Skip to content

Commit

Permalink
Merge pull request #16 from adri09070/adding-command-tests-to-baselin…
Browse files Browse the repository at this point in the history
…e-default

adding Chest-Commands-Tests to default baseline
  • Loading branch information
StevenCostiou authored Aug 2, 2023
2 parents d63d5e9 + 85c45e4 commit 368137d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/BaselineOfChest/BaselineOfChest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ BaselineOfChest >> baseline: spec [
spec
package: 'Chest';
package: 'Chest-Tests';
package: 'Chest-Commands' ].
package: 'Chest-Commands';
package: 'Chest-Commands-Tests' ].

spec
group: 'default'
with: #( 'Chest' 'Chest-Commands' 'Chest-Tests' )
with: #( 'Chest' 'Chest-Commands' 'Chest-Tests' 'Chest-Commands-Tests' )
]
3 changes: 2 additions & 1 deletion src/Chest-Commands-Tests/ChestCommandTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@ ChestCommandTest >> tearDown [
"Removing chests that currently exist but did not exist before the test execution"
nowChests do: [ :aChest |
(initialChests includes: aChest) ifFalse: [
Chest removeChest: aChest ] ]
Chest removeChest: aChest ] ].
super tearDown
]

0 comments on commit 368137d

Please sign in to comment.