A new version of CollectionsTests was added to project The Inbox:
http://source.squeak.org/inbox/CollectionsTests-ct.312.mcz==================== Summary ====================
Name: CollectionsTests-ct.312
Author: ct
Time: 1 June 2019, 11:45:41.221879 am
UUID: 6b015370-ef46-aa46-a181-6ee1476a6a79
Ancestors: CollectionsTests-mt.311
Move test for #join and #joinSeparatedBy: from SequenceableCollectionTest into CollectionTest
Cf. ct.828
=============== Diff against CollectionsTests-mt.311 ===============
Item was added:
+ ----- Method: CollectionTest>>testJoin (in category 'tests') -----
+ testJoin
+
+ self assert: #(a b c d e) join = 'abcde'.
+ self assert: (#(a b c) joinSeparatedBy: '|') = 'a|b|c'.!
Item was removed:
- ----- Method: SequenceableCollectionTest>>testJoin (in category 'tests - converting') -----
- testJoin
-
- self assert: #(a b c d e) join = 'abcde'.
- self assert: (#(a b c) joinSeparatedBy: '|') = 'a|b|c'.!