The Trunk: Tests-cwp.283.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Tests-cwp.283.mcz

commits-2
Colin Putney uploaded a new version of Tests to project The Trunk:
http://source.squeak.org/trunk/Tests-cwp.283.mcz

==================== Summary ====================

Name: Tests-cwp.283
Author: cwp
Time: 4 January 2014, 5:20:12.57 pm
UUID: d4a02a29-c0cc-4a40-b031-bb9e7b36899b
Ancestors: Tests-cwp.282

Clarify expectations of Environment>>undeclare:.

=============== Diff against Tests-cwp.282 ===============

Item was changed:
  ----- Method: EnvironmentTest>>testUndeclare (in category 'binding tests') -----
  testUndeclare
  | one two |
  one := env undeclare: #Griffle.
  two := env bindingOf: #Griffle.
  self assert: one == two.
+ self assert: one class == Global.
+ self assert: one value isNil!
- self assert: one class == Global!