diff --git a/subpackages/assertions/dub.sdl b/subpackages/assertions/dub.sdl index 5e75c39..5194d07 100644 --- a/subpackages/assertions/dub.sdl +++ b/subpackages/assertions/dub.sdl @@ -3,4 +3,4 @@ description "Custom assertions for use in tests" authors "Atila Neves" license "BSD 3-clause" targetType "library" -dependency "unit-threaded:exception" path="../.." +dependency "exception" path="../exception" diff --git a/subpackages/autorunner/dub.sdl b/subpackages/autorunner/dub.sdl index e5f6406..8a9d874 100644 --- a/subpackages/autorunner/dub.sdl +++ b/subpackages/autorunner/dub.sdl @@ -3,4 +3,4 @@ description "Automatically runs all tests of all modules of the dub root project authors "Atila Neves" license "BSD 3-clause" targetType "sourceLibrary" -dependency "unit-threaded:runner" path="../.." +dependency "runner" path="../runner" diff --git a/subpackages/behave/dub.sdl b/subpackages/behave/dub.sdl index cd95604..435e7fe 100644 --- a/subpackages/behave/dub.sdl +++ b/subpackages/behave/dub.sdl @@ -3,4 +3,4 @@ description "BDD output formatting" authors "Atila Neves" license "BSD 3-clause" targetType "library" -dependency "unit-threaded:runner" path="../.." +dependency "runner" path="../runner" diff --git a/subpackages/exception/dub.sdl b/subpackages/exception/dub.sdl index 1ab7f03..676ef8d 100644 --- a/subpackages/exception/dub.sdl +++ b/subpackages/exception/dub.sdl @@ -3,4 +3,4 @@ description "Exceptions" authors "Atila Neves" license "BSD 3-clause" targetType "library" -dependency "unit-threaded:from" path="../.." +dependency "from" path="../from" diff --git a/subpackages/integration/dub.sdl b/subpackages/integration/dub.sdl index 5436bc5..803833e 100644 --- a/subpackages/integration/dub.sdl +++ b/subpackages/integration/dub.sdl @@ -3,5 +3,5 @@ description "Integration testing facilities" authors "Atila Neves" license "BSD 3-clause" targetType "library" -dependency "unit-threaded:from" path="../.." -dependency "unit-threaded:assertions" path="../.." +dependency "from" path="../from" +dependency "assertions" path="../assertions" diff --git a/subpackages/mocks/dub.sdl b/subpackages/mocks/dub.sdl index a136f4f..d8181c1 100644 --- a/subpackages/mocks/dub.sdl +++ b/subpackages/mocks/dub.sdl @@ -3,6 +3,6 @@ description "Mocking facilities" authors "Atila Neves" license "BSD 3-clause" targetType "library" -dependency "unit-threaded:from" path="../.." -dependency "unit-threaded:exception" path="../.." -dependency "unit-threaded:assertions" path="../.." +dependency "from" path="../from" +dependency "exception" path="../exception" +dependency "assertions" path="../assertions" diff --git a/subpackages/property/dub.sdl b/subpackages/property/dub.sdl index e080205..9a620f6 100644 --- a/subpackages/property/dub.sdl +++ b/subpackages/property/dub.sdl @@ -3,8 +3,8 @@ description "Property-based testing facilities" authors "Atila Neves" license "BSD 3-clause" targetType "library" -dependency "unit-threaded:from" path="../.." -dependency "unit-threaded:exception" path="../.." +dependency "from" path="../from" +dependency "exception" path="../exception" configuration "default" { diff --git a/subpackages/runner/dub.sdl b/subpackages/runner/dub.sdl index e485e20..4e0114f 100644 --- a/subpackages/runner/dub.sdl +++ b/subpackages/runner/dub.sdl @@ -3,5 +3,5 @@ description "Test runner" authors "Atila Neves" license "BSD 3-clause" targetType "library" -dependency "unit-threaded:from" path="../.." -dependency "unit-threaded:exception" path="../.." +dependency "from" path="../from" +dependency "exception" path="../exception" diff --git a/tests/integration_tests/autorunner/dub.sdl b/tests/integration_tests/autorunner/dub.sdl index 8b3f1b7..b819781 100644 --- a/tests/integration_tests/autorunner/dub.sdl +++ b/tests/integration_tests/autorunner/dub.sdl @@ -4,7 +4,7 @@ configuration "default" { } configuration "unittest" { - dependency "unit-threaded:autorunner" path="../../../" + dependency "autorunner" path="../../../subpackages/autorunner" sourcePaths "source" "test" importPaths "source" "test" }