The Trunk: Tests-fbs.184.mcz

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

The Trunk: Tests-fbs.184.mcz

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

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

Name: Tests-fbs.184
Author: fbs
Time: 15 January 2013, 2:48:38.12 pm
UUID: b2ea6148-89a3-441c-8845-5df449cdeaa6
Ancestors: Tests-fbs.183

OrderedCollection's printString is inadequate for logging this error: rather, manually join the offending unbound globals with a comma.

=============== Diff against Tests-fbs.183 ===============

Item was changed:
  ----- Method: ReleaseTest>>testMethodsWithUnboundGlobals (in category 'testing') -----
  testMethodsWithUnboundGlobals
+ | unbound |
+ unbound := SystemNavigation default methodsWithUnboundGlobals.
-
  Smalltalk cleanOutUndeclared.
+ self assert: unbound isEmpty description: ('Unbound: ', (unbound reduce: [:acc :each | acc, ', ', each]))!
- self assert: OrderedCollection new equals: SystemNavigation default methodsWithUnboundGlobals.
- !