Skip to content

Commit

Permalink
[Clean]: Remove Obsolete Metacello Config Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
seandenigris committed Aug 29, 2024
1 parent 4658434 commit a221972
Showing 1 changed file with 1 addition and 78 deletions.
79 changes: 1 addition & 78 deletions src/SmallWorld-Specification/SmallProjectSpecification.class.st
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.
]

0 comments on commit a221972

Please sign in to comment.