The Inbox: Tests-spd.80.mcz

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

The Inbox: Tests-spd.80.mcz

commits-2
A new version of Tests was added to project The Inbox:
http://source.squeak.org/inbox/Tests-spd.80.mcz

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

Name: Tests-spd.80
Author: spd
Time: 19 May 2010, 4:01:50.465 pm
UUID: 0eb7c6ee-258f-44aa-8bde-048c00b45da8
Ancestors: Tests-ar.79

* added tests to SystemOrganizer

=============== Diff against Tests-ar.79 ===============

Item was added:
+ ----- Method: SystemOrganizerTest>>testAccessGlobalDirectly (in category 'tests') -----
+ testAccessGlobalDirectly
+ "
+ SystemOrganizerTest run: #testAccessGlobalDirectly
+ "
+
+ self assert: (SystemOrganization isKindOf: SystemOrganizer).
+
+ "It really lives in Smalltalk (another global)"
+ self assert: ((Smalltalk at: #SystemOrganization) == SystemOrganization).!

Item was added:
+ TestCase subclass: #SystemOrganizerTest
+ instanceVariableNames: ''
+ classVariableNames: ''
+ poolDictionaries: ''
+ category: 'Tests-System-Support'!

Item was added:
+ ----- Method: SystemOrganizerTest>>testAccessGlobalThroughClass (in category 'tests') -----
+ testAccessGlobalThroughClass
+ "
+ SystemOrganizerTest run: #testAccessGlobalThroughClass
+ "
+
+ "In case someone stumbles upon the SystemOrganizer class, and does not know
+ about the SystemNavigation global, it can be accessed from there, too."
+ self assert: (SystemOrganizer default == SystemOrganization).
+ !