The Inbox: CollectionsTests-topa.166.mcz

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

The Inbox: CollectionsTests-topa.166.mcz

commits-2
A new version of CollectionsTests was added to project The Inbox:
http://source.squeak.org/inbox/CollectionsTests-topa.166.mcz

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

Name: CollectionsTests-topa.166
Author: topa
Time: 16 June 2010, 3:33:25.75 pm
UUID: 0ab65dc3-7dfd-4c0b-9307-649e562d9bc8
Ancestors: CollectionsTests-ul.165

Provide a test for asCamelCase

=============== Diff against CollectionsTests-ul.165 ===============

Item was added:
+ ----- Method: StringTest>>testAsCamelCase (in category 'tests - converting') -----
+ testAsCamelCase
+
+ self assert: 'A man, a plan, a canal, panama' asCamelCase = 'AMan,APlan,ACanal,Panama'.
+ self assert: 'Here 123should % be 6 the name6 of the method' asCamelCase = 'Here123should%Be6TheName6OfTheMethod'.
+ !