[squeak-dev] The Trunk: KernelTests-nice.94.mcz

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

[squeak-dev] The Trunk: KernelTests-nice.94.mcz

commits-2
Nicolas Cellier uploaded a new version of KernelTests to project The Trunk:
http://source.squeak.org/trunk/KernelTests-nice.94.mcz

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

Name: KernelTests-nice.94
Author: nice
Time: 19 September 2009, 9:42:41 am
UUID: b3ecc69f-9a74-334e-8448-859266f29d67
Ancestors: KernelTests-nice.93

Test for http://bugs.squeak.org/view.php?id=6695
Float storeStringBase: does not store the radix
Since Integer and Fraction do store the radix, no reason to differ...

=============== Diff against KernelTests-nice.93 ===============

Item was added:
+ ----- Method: FloatTest>>testStoreBase16 (in category 'printing') -----
+ testStoreBase16
+ "This bug was reported in mantis http://bugs.squeak.org/view.php?id=6695"
+
+ self
+ assert: (20.0 storeStringBase: 16) = '16r14.0'
+ description: 'the radix prefix should not be omitted'!