X Tutup
Skip to content

Commit b2e8396

Browse files
author
Johan Brichau
committed
Added a test for: Fix GRDynamicVariable>>use:during: in GemStone to correctly implement expected semantics (see method comments for details)
1 parent 919b273 commit b2e8396

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed
Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
tests
22
testDefaultValue
3-
self assert: GRTestDynamicVariable value = 'default test value'
3+
self assert: GRTestDynamicVariable value = 'default test value'.
4+
5+
GRTestDynamicVariable
6+
use: 'my value'
7+
during: [ ].
8+
self assert: GRTestDynamicVariable value = 'default test value' description:'The default value is no longer correct'.
9+

repository/Grease-Tests-Core.package/GRDynamicVariableTest.class/methodProperties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"testWithoutValue" : "MaxLeske 5/18/2017 07:42",
44
"testAnswer" : "MaxLeske 5/18/2017 07:42",
55
"testWithNestedValue" : "MaxLeske 5/18/2017 07:42",
6-
"testDefaultValue" : "JohanBrichau 7/23/2017 16:57",
6+
"testDefaultValue" : "JohanBrichau 9/8/2017 09:53",
77
"testWithValue" : "MaxLeske 5/18/2017 07:42"
88
},
99
"class" : { }

0 commit comments

Comments
 (0)
X Tutup