-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Clean]: Remove Obsolete Metacello Config Tests
- Loading branch information
1 parent
4658434
commit a221972
Showing
1 changed file
with
1 addition
and
78 deletions.
There are no files selected for viewing
79 changes: 1 addition & 78 deletions
79
src/SmallWorld-Specification/SmallProjectSpecification.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 |
---|---|---|
@@ -1,82 +1,5 @@ | ||
Class { | ||
#name : #SmallProjectSpecification, | ||
#superclass : #TestCase, | ||
#category : 'SmallWorld-Specification' | ||
#category : #'SmallWorld-Specification' | ||
} | ||
|
||
{ #category : #'as yet unclassified' } | ||
SmallProjectSpecification >> testLoadBleedingEdge [ | ||
|
||
| project | | ||
project := SmallMetacelloProject named: 'Versionner'. | ||
project | ||
repository: '/Volumes/Fast/Squeak/Repositories/External Package Extensions/' asFileReference; | ||
beBleedingEdge; | ||
yourself. | ||
|
||
project loadScript loadsBleedingEdge should beTrue. | ||
] | ||
|
||
{ #category : #'as yet unclassified' } | ||
SmallProjectSpecification >> testLoadDevelopmentByDefault [ | ||
|
||
| project | | ||
project := SmallMetacelloProject named: 'Versionner'. | ||
project | ||
repository: '/Volumes/Fast/Squeak/Repositories/External Package Extensions/' asFileReference; | ||
beDevelopment; | ||
yourself. | ||
|
||
project loadScript loadsDevelopment should beTrue. | ||
] | ||
|
||
{ #category : #'as yet unclassified' } | ||
SmallProjectSpecification >> testLoadDevelopmentVersion [ | ||
|
||
| project script | | ||
project := SmallMetacelloProject named: 'Versionner'. | ||
project repository: '/Volumes/Fast/Squeak/Repositories/External Package Extensions/' asFileReference. | ||
|
||
script := project loadScript loadingDevelopment. | ||
|
||
script asString trimBoth should = ' | ||
Gofer it | ||
directory: ''/Volumes/Fast/Squeak/Repositories/External Package Extensions''; | ||
package: ''ConfigurationOfVersionner''; | ||
load. | ||
((Smalltalk at: #ConfigurationOfVersionner) project version: #''development'') load: ''default''.' trimBoth. | ||
] | ||
|
||
{ #category : #'as yet unclassified' } | ||
SmallProjectSpecification >> testLoadLocalMetacelloProject [ | ||
|
||
| project script | | ||
project := SmallMetacelloProject named: 'Versionner'. | ||
project repository: '/Volumes/Fast/Squeak/Repositories/External Package Extensions/' asFileReference. | ||
|
||
script := project loadScript. | ||
|
||
script asString trimBoth should = ' | ||
Gofer it | ||
directory: ''/Volumes/Fast/Squeak/Repositories/External Package Extensions''; | ||
package: ''ConfigurationOfVersionner''; | ||
load. | ||
((Smalltalk at: #ConfigurationOfVersionner) project version: #''stable'') load: ''default''.' trimBoth. | ||
] | ||
|
||
{ #category : #'as yet unclassified' } | ||
SmallProjectSpecification >> testLoadSpecificVersion [ | ||
|
||
| project script | | ||
project := SmallMetacelloProject named: 'Versionner'. | ||
project repository: '/Volumes/Fast/Squeak/Repositories/External Package Extensions/' asFileReference. | ||
|
||
script := project loadScript loadingVersion: '1.9'. | ||
|
||
script asString trimBoth should = ' | ||
Gofer it | ||
directory: ''/Volumes/Fast/Squeak/Repositories/External Package Extensions''; | ||
package: ''ConfigurationOfVersionner''; | ||
load. | ||
((Smalltalk at: #ConfigurationOfVersionner) project version: ''1.9'') load: ''default''.' trimBoth. | ||
] |