Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ classesFrom: aDictionary
at: #packages
ifPresent: [ :packagesList | | packages commandLineHandler |
packages := Set new.
commandLineHandler := (Smalltalk at: #TestCommandLineHandler) new.
commandLineHandler := self testCliCommand.
packagesList do: [ :each |
commandLineHandler addPackagesMatching: each to: packages ].
packages do: [ :each |
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
tests
testCliCommand
^ (Smalltalk at: #TestCommandLineHandler) new
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
tests
testCliCommand

^ (Smalltalk at: #ClapTestRunner) new
Loading