The Trunk: CollectionsTests-ar.166.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.166.mcz

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

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

Name: CollectionsTests-ar.166
Author: ar
Time: 15 July 2010, 4:24:17.051 pm
UUID: 1f9d2228-b62d-f74b-9f28-4d041266b4b2
Ancestors: CollectionsTests-ul.165

Tests for broken withNoLineLongerThan: behavior.

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

Item was added:
+ ----- Method: StringTest>>testWithNoLineLongerThanSimply (in category 'testing - lines') -----
+ testWithNoLineLongerThanSimply
+ "Simple tests for withNoLineLongerThan"
+
+ self assert: ('Sample text to line break at some point' withNoLineLongerThan:  28)
+ = 'Sample text to line break
+ at some point'.
+
+ self assert: ('Sample text
+ to line break
+ at some point' withNoLineLongerThan:  28)
+ = 'Sample text
+ to line break
+ at some point'.
+ !