[squeak-dev] The Trunk: KernelTests-ul.202.mcz
commits at source.squeak.org
commits at source.squeak.org
Sat Sep 17 19:31:34 UTC 2011
Levente Uzonyi uploaded a new version of KernelTests to project The Trunk:
http://source.squeak.org/trunk/KernelTests-ul.202.mcz
==================== Summary ====================
Name: KernelTests-ul.202
Author: ul
Time: 17 September 2011, 8:35:29.332 pm
UUID: 87cdb461-d545-9244-b617-98036ef51066
Ancestors: KernelTests-ul.201
- make sure that the test variables are removed from process' environment
=============== Diff against KernelTests-ul.201 ===============
Item was added:
+ ----- Method: ProcessSpecificTest>>tearDown (in category 'running') -----
+ tearDown
+ "Make sure we don't pollute the running process' environment with the test variables"
+
+ { TestLocalVariable. TestDynamicVariable } do: [ :each |
+ Processor activeProcess environmentRemoveKey: each ifAbsent: [] ]!
Item was changed:
----- Method: ProcessSpecificTest>>testAssignmentToLocalVariableReturnsTheValue (in category 'testing') -----
testAssignmentToLocalVariableReturnsTheValue
+ self assert: 1 equals: (TestLocalVariable value: 1)!
- self assert: (TestLocalVariable value: 1) = 1!
More information about the Squeak-dev
mailing list
|