Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion subpackages/assertions/dub.sdl
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion subpackages/autorunner/dub.sdl
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion subpackages/behave/dub.sdl
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion subpackages/exception/dub.sdl
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ description "Exceptions"
authors "Atila Neves"
license "BSD 3-clause"
targetType "library"
dependency "unit-threaded:from" path="../.."
dependency "from" path="../from"
4 changes: 2 additions & 2 deletions subpackages/integration/dub.sdl
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions subpackages/mocks/dub.sdl
Original file line number Diff line number Diff line change
Expand Up @@ -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"
4 changes: 2 additions & 2 deletions subpackages/property/dub.sdl
Original file line number Diff line number Diff line change
Expand Up @@ -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" {

Expand Down
4 changes: 2 additions & 2 deletions subpackages/runner/dub.sdl
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion tests/integration_tests/autorunner/dub.sdl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ configuration "default" {
}

configuration "unittest" {
dependency "unit-threaded:autorunner" path="../../../"
dependency "autorunner" path="../../../subpackages/autorunner"
sourcePaths "source" "test"
importPaths "source" "test"
}
Loading