Skip to content
Prev Previous commit
Next Next commit
Added a test for: Fix GRDynamicVariable>>use:during: in GemStone to c…
…orrectly implement expected semantics (see method comments for details)
  • Loading branch information
Johan Brichau committed Sep 9, 2017
commit b2e8396cedc82dad4d770284dece2e5f9e882507
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
tests
testDefaultValue
self assert: GRTestDynamicVariable value = 'default test value'
self assert: GRTestDynamicVariable value = 'default test value'.

GRTestDynamicVariable
use: 'my value'
during: [ ].
self assert: GRTestDynamicVariable value = 'default test value' description:'The default value is no longer correct'.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"testWithoutValue" : "MaxLeske 5/18/2017 07:42",
"testAnswer" : "MaxLeske 5/18/2017 07:42",
"testWithNestedValue" : "MaxLeske 5/18/2017 07:42",
"testDefaultValue" : "JohanBrichau 7/23/2017 16:57",
"testDefaultValue" : "JohanBrichau 9/8/2017 09:53",
"testWithValue" : "MaxLeske 5/18/2017 07:42"
},
"class" : { }
Expand Down
Loading