The Trunk: CollectionsTests-fbs.202.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-fbs.202.mcz

commits-2
Frank Shearar uploaded a new version of CollectionsTests to project The Trunk:
http://source.squeak.org/trunk/CollectionsTests-fbs.202.mcz

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

Name: CollectionsTests-fbs.202
Author: fbs
Time: 12 April 2013, 1:02:06.89 pm
UUID: 45602530-8979-4b06-bfff-6ba4ab7411eb
Ancestors: CollectionsTests-fbs.201

nonSEarray2 contains a ClassBinding, which prints differently.

=============== Diff against CollectionsTests-fbs.201 ===============

Item was changed:
  ----- Method: ArrayTest>>testPrinting (in category 'testing') -----
  testPrinting
  self assert: '#(1 true 3 #four)' equals: literalArray printString.
  self
  assert: (literalArray = (Compiler evaluate: literalArray printString))
  description: 'Literal array doesn''t print as a string that when evaluated returns an equivalent Array'.
  self assert: '{1 . true . (3/4) . Color black . (2 to: 4) . 5}' equals: selfEvaluatingArray printString.
  self
  assert: (selfEvaluatingArray = (Compiler evaluate: selfEvaluatingArray printString))
  description: 'Array doesn''t print as a string that when evaluated returns an equivalent Array'.
  self assert: '{1 . a Set(1)}' equals: nonSEArray1 printString.
+ self assert: '{#Array=>Array}' equals: nonSEarray2 printString.
- self assert: '{#Array}' equals: nonSEarray2 printString.
  !