[Pkg] The Trunk: CollectionsTests-ul.193.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Sep 17 01:52:38 UTC 2012


Levente Uzonyi uploaded a new version of CollectionsTests to project The Trunk:
http://source.squeak.org/trunk/CollectionsTests-ul.193.mcz

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

Name: CollectionsTests-ul.193
Author: ul
Time: 17 September 2012, 3:52:11.327 am
UUID: 0610f05a-a1d2-474b-b03f-6a5955a6967a
Ancestors: CollectionsTests-ul.192

Fixed the typo in the name of RWBinaryOrTextStreamTest >> #testExisting.

=============== Diff against CollectionsTests-ul.192 ===============

Item was removed:
- ----- Method: RWBinaryOrTextStreamTest>>testExisiting (in category 'tests') -----
- testExisiting
- 
- 	| string stream |
- 	
- 	string := 'hello'.
- 	
- 	stream := RWBinaryOrTextStream on: string.
- 	self assert: stream contents = string.
- 
- 	stream := RWBinaryOrTextStream on: string.
- 	stream setToEnd.
- 	self assert: stream position = string size.
- !

Item was added:
+ ----- Method: RWBinaryOrTextStreamTest>>testExisting (in category 'tests') -----
+ testExisting
+ 
+ 	| string stream |
+ 	
+ 	string := 'hello'.
+ 	
+ 	stream := RWBinaryOrTextStream on: string.
+ 	self assert: stream contents = string.
+ 
+ 	stream := RWBinaryOrTextStream on: string.
+ 	stream setToEnd.
+ 	self assert: stream position = string size.
+ !



More information about the Packages mailing list