-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Boids: clean up pass, split test to new package and add baseline
- Loading branch information
1 parent
cf52d70
commit 5cfd68f
Showing
9 changed files
with
57 additions
and
40 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
src/BaselineOfBlocTutorialBoids/BaselineOfBlocTutorialBoids.class.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Class { | ||
#name : #BaselineOfBlocTutorialBoids, | ||
#superclass : #BaselineOf, | ||
#category : #BaselineOfBlocTutorialBoids | ||
} | ||
|
||
{ #category : #baselines } | ||
BaselineOfBlocTutorialBoids >> baseline: spec [ | ||
<baseline> | ||
|
||
spec for: #common do: [ | ||
spec | ||
baseline: #'Bloc' | ||
with: [ spec repository: 'github://pharo-graphics/Bloc:master/src' ]. | ||
spec | ||
package: #'BlocTutorials-Boids' | ||
with: [ spec requires: #( #'Bloc' ) ]. | ||
spec | ||
package: #'BlocTutorials-Boids-Tests' | ||
with: [ spec requires: #( #'BlocTutorials-Boids' ) ] | ||
] | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Package { #name : #BaselineOfBlocTutorialBoids } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Package { #name : #'BlocTutorials-Boids-Tests' } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters