Levente Uzonyi uploaded a new version of Tests to project The Trunk:
http://source.squeak.org/trunk/Tests-ul.99.mcz==================== Summary ====================
Name: Tests-ul.99
Author: ul
Time: 15 November 2010, 10:05:38.702 am
UUID: f2bbdb90-994e-574f-aeb1-48f58ced0a32
Ancestors: Tests-ul.98
- get rid of the last underscore assignments
=============== Diff against Tests-ul.98 ===============
Item was changed:
----- Method: HexTest>>testCharacterHex (in category 'as yet unclassified') -----
testCharacterHex
| result |
+ result := $a hex.
- result _ $a hex.
self assert: result = '61'.
+ result := $A hex.
- result _ $A hex.
self assert: result = '41'.
!
Item was changed:
----- Method: HexTest>>testStringAsHex (in category 'as yet unclassified') -----
testStringAsHex
| result |
+ result := 'abc' asHex.
- result _ 'abc' asHex.
self assert: result = '616263'.
!