Marcel Taeumel uploaded a new version of CollectionsTests to project The Trunk:
http://source.squeak.org/trunk/CollectionsTests-mt.228.mcz==================== Summary ====================
Name: CollectionsTests-mt.228
Author: mt
Time: 14 January 2015, 1:13:55.846 pm
UUID: 77ab6cc7-31f8-ef4c-aa52-ac8efc726b82
Ancestors: CollectionsTests-mt.227
Tests added for #flatten.
=============== Diff against CollectionsTests-mt.227 ===============
Item was added:
+ ----- Method: SequenceableCollectionTest>>testFlatten (in category 'tests - converting') -----
+ testFlatten
+
+ self assert: {3 .4 .{2 .4 .{'hi'} .'ho'}} flatten = {3 .4 .2 .4 .'hi' .'ho'}.
+ self assert: #( (1 2) (3 4) ) flatten = #( (1 2) (3 4) ) concatenation.!