Navigation Menu

Skip to content

Commit

Permalink
[improvement] add missing test for fluid trait, failing currently
Browse files Browse the repository at this point in the history
  • Loading branch information
hogoww committed Mar 27, 2021
1 parent 7e30588 commit 0f1a134
Showing 1 changed file with 14 additions and 0 deletions.
Expand Up @@ -158,6 +158,20 @@ ClyClassDefinitionEditorToolMorphTest >> testAcceptAWellWrittenFluidClassDefinit
] ensure: [ self deleteClassIfExists ].
]

{ #category : #test }
ClyClassDefinitionEditorToolMorphTest >> testAcceptAWellWrittenFluidTraitDefinitionRegistersIt [
self checkClassDoesntExists.
[
self compileString:
'Trait << #' , className , '
package: ''Calypso-SystemQueries-Tests'''.
self assert: self classExists.
self assertResultCompilationDidntChange.


] ensure: [ self deleteClassIfExists ].
]

{ #category : #test }
ClyClassDefinitionEditorToolMorphTest >> testAcceptAWellWrittenMethodRegistersIt [
| selector |
Expand Down

0 comments on commit 0f1a134

Please sign in to comment.