Skip to content

Commit

Permalink
Finish tonel migration to V3
Browse files Browse the repository at this point in the history
  • Loading branch information
jecisc committed May 21, 2024
1 parent 0e003dd commit 6ee3377
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
11 changes: 6 additions & 5 deletions src/Chest-Commands-Tests/ChestCommandTest.class.st
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
Class {
#name : #ChestCommandTest,
#superclass : #TestCase,
#name : 'ChestCommandTest',
#superclass : 'TestCase',
#instVars : [
'initialChests'
],
#category : #'Chest-Commands-Tests'
#category : 'Chest-Commands-Tests',
#package : 'Chest-Commands-Tests'
}

{ #category : #running }
{ #category : 'running' }
ChestCommandTest >> setUp [

super setUp.
initialChests := Chest allChests copy "Keep a copy of all the chests that currently exist"
]

{ #category : #running }
{ #category : 'running' }
ChestCommandTest >> tearDown [

| nowChests |
Expand Down
9 changes: 5 additions & 4 deletions src/Chest-Commands-Tests/ChestPasteLoadCommandTest.class.st
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
Class {
#name : #ChestPasteLoadCommandTest,
#superclass : #ChestCommandTest,
#category : #'Chest-Commands-Tests'
#name : 'ChestPasteLoadCommandTest',
#superclass : 'ChestCommandTest',
#category : 'Chest-Commands-Tests',
#package : 'Chest-Commands-Tests'
}

{ #category : #tests }
{ #category : 'tests' }
ChestPasteLoadCommandTest >> testBuildInjectedCode [

| chest obj command code |
Expand Down
2 changes: 1 addition & 1 deletion src/Chest-Commands-Tests/package.st
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Package { #name : #'Chest-Commands-Tests' }
Package { #name : 'Chest-Commands-Tests' }

0 comments on commit 6ee3377

Please sign in to comment.