Skip to content

Commit

Permalink
Merge pull request #33 from jecisc/2-Add-tests
Browse files Browse the repository at this point in the history
Add tests
  • Loading branch information
jecisc committed Apr 12, 2020
2 parents 6d5e7c0 + 46a06ba commit 6d662de
Show file tree
Hide file tree
Showing 25 changed files with 2,039 additions and 79 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ os:
- linux

smalltalk:
- Pharo-6.1
- Pharo64-7.0
- Pharo64-8.0
- Pharo64-9.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Thus, it should be safe to depend on a fixed major version and moving minor vers

| Version | Compatible Pharo versions |
|------------- |--------------------------- |
| 1.x.x | Pharo 61, 70, 80, 90 |
| 1.x.x | Pharo 70, 80, 90 |

## Contact

Expand Down
13 changes: 9 additions & 4 deletions src/BaselineOfChanel/BaselineOfChanel.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,22 @@ BaselineOfChanel >> baseline: spec [
for: #common
do: [ spec
package: 'Chanel';
package: 'Chanel-Tests' with: [ spec requires: 'Chanel' ].
package: 'Chanel-Tests' with: [ spec requires: #('Chanel') ].

spec
group: 'Core' with: #('Chanel');
group: 'Tests' with: #('Chanel-Tests') ].

spec
for: #'pharo6.x'
for: #(#'pharo7.x')
do: [ spec
package: 'Chanel-Pharo6';
package: 'Chanel' with: [ spec requires: 'Chanel-Pharo6' ] ]
package: 'Chanel-Pharo7';
package: 'Chanel-Tests' with: [ spec requires: 'Chanel-Pharo7' ] ]
]

{ #category : #dependencies }
BaselineOfChanel >> pharoBackwardCompatibility: spec [
spec baseline: 'PharoBackwardCompatibility' with: [ spec repository: 'github://jecisc/PharoBackwardCompatibility:v1.x.x/src' ]
]

{ #category : #accessing }
Expand Down
7 changes: 0 additions & 7 deletions src/Chanel-Pharo6/RBMethodNode.extension.st

This file was deleted.

1 change: 0 additions & 1 deletion src/Chanel-Pharo6/package.st

This file was deleted.

Loading

0 comments on commit 6d662de

Please sign in to comment.