[squeak-dev] The Trunk: CollectionsTests-mt.227.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Jan 14 11:48:38 UTC 2015


Marcel Taeumel uploaded a new version of CollectionsTests to project The Trunk:
http://source.squeak.org/trunk/CollectionsTests-mt.227.mcz

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

Name: CollectionsTests-mt.227
Author: mt
Time: 14 January 2015, 12:48:32.028 pm
UUID: ba80ec03-2785-4642-9a8c-09ad419fe738
Ancestors: CollectionsTests-mt.226

Tests added for #join

=============== Diff against CollectionsTests-mt.226 ===============

Item was added:
+ ----- 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'.!

Item was added:
+ ----- Method: SequenceableCollectionTest>>testSplitAndJoin (in category 'tests - converting') -----
+ testSplitAndJoin
+ 
+ 	self assert: (('a|b|c' splitBy: '|') joinSeparatedBy: '|') = 'a|b|c'.!



More information about the Squeak-dev mailing list