The Trunk: CollectionsTests-ar.147.mcz

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

The Trunk: CollectionsTests-ar.147.mcz

commits-2
Andreas Raab uploaded a new version of CollectionsTests to project The Trunk:
http://source.squeak.org/trunk/CollectionsTests-ar.147.mcz

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

Name: CollectionsTests-ar.147
Author: ar
Time: 24 February 2010, 6:07:01.311 pm
UUID: afb3e5d1-bf16-5f41-b6b7-8e7b99752de6
Ancestors: CollectionsTests-ul.146

Document an ancient bug in RunArray class>>scanFrom:.

=============== Diff against CollectionsTests-ul.146 ===============

Item was added:
+ ----- Method: RunArrayTest>>testScanFromTrailer (in category 'tests - instance creation') -----
+ testScanFromTrailer
+ "This test documents an ancient bug in RunArray class>>scanFrom:."
+
+ self assert: (RunArray scanFrom: '(8 4 5),b,!!' readStream) =
+ (RunArray runs: #(8 4 5) values: { {}. {TextEmphasis bold}. {} }).!