[squeak-dev] The Inbox: CollectionsTests-fbs.203.mcz

commits at source.squeak.org commits at source.squeak.org
Wed May 1 21:12:59 UTC 2013


Frank Shearar uploaded a new version of CollectionsTests to project The Inbox:
http://source.squeak.org/inbox/CollectionsTests-fbs.203.mcz

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

Name: CollectionsTests-fbs.203
Author: fbs
Time: 1 May 2013, 10:12:50.228 pm
UUID: 7ecc6719-b357-4438-8c6d-eb0aa8b742f1
Ancestors: CollectionsTests-fbs.202

Tests for Collections-fbs.516, showing that an Association can round-trip through #storeString.

=============== Diff against CollectionsTests-fbs.202 ===============

Item was added:
+ ----- Method: AssociationTest>>testStoreStringEvaluatesToEqualValue (in category 'as yet unclassified') -----
+ testStoreStringEvaluatesToEqualValue
+ 	self assert: 1 -> 2 equals: (Compiler evaluate: (1 -> 2) storeString).
+ 	self assert: false -> true equals: (Compiler evaluate: (false -> true) storeString).
+ 	self assert: #foo -> #bar equals: (Compiler evaluate: (#foo -> #bar) storeString).
+ 	self assert: #foo -> #+ equals: (Compiler evaluate: (#foo -> #+) storeString).
+ 	self assert: #+ -> #bar equals: (Compiler evaluate: (#+ -> #bar) storeString).!



More information about the Squeak-dev mailing list