-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Johan Brichau
committed
Nov 24, 2023
1 parent
3a4e4bc
commit e5fedf3
Showing
6 changed files
with
20 additions
and
9 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
repository/Grease-Tests-Slime.package/GRSlimeTest.class/instance/compile.in..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,3 +1,3 @@ | ||
accessing-code | ||
compile: aString in: aClass | ||
^ aClass compile: aString classified: #(accessing) | ||
^ aClass compile: aString classified: #accessing |
12 changes: 9 additions & 3 deletions
12
repository/Grease-Tests-Slime.package/GRSlimeTest.class/instance/defineClass.superclass..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
1 change: 1 addition & 0 deletions
1
repository/Grease-Tests-Slime.package/GRSlimeTest.class/instance/setUp.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,5 +1,6 @@ | ||
running | ||
setUp | ||
super setUp. | ||
factory := ClassFactoryForTestCase new. | ||
model := RBNamespace new. | ||
environment := RBClassEnvironment new |
9 changes: 6 additions & 3 deletions
9
repository/Grease-Tests-Slime.package/GRSlimeTest.class/instance/tearDown.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,7 +1,10 @@ | ||
running | ||
tearDown | ||
|
||
super tearDown. | ||
(Smalltalk organization listAtCategoryNamed: self category) do:[ :e | | ||
SmalltalkImage current removeClassNamed: e ]. | ||
factory cleanUp. | ||
"package := (Smalltalk organization packageNamed: self category). | ||
package classes do:[ :e | | ||
SmalltalkImage current removeClassNamed: e name ]. | ||
Smalltalk organization | ||
removeCategory: self category | ||
removePackage: package" |
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
2 changes: 1 addition & 1 deletion
2
repository/Grease-Tests-Slime.package/monticello.meta/categories.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 +1 @@ | ||
SystemOrganization addCategory: #'Grease-Tests-Slime'! | ||
self packageOrganizer ensurePackage: #'Grease-Tests-Slime' withTags: #()! |