The Inbox: ToolsTests-ct.105.mcz

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

The Inbox: ToolsTests-ct.105.mcz

commits-2
A new version of ToolsTests was added to project The Inbox:
http://source.squeak.org/inbox/ToolsTests-ct.105.mcz

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

Name: ToolsTests-ct.105
Author: ct
Time: 14 May 2021, 4:01:07.575396 pm
UUID: d8579d99-14d7-2b49-86d2-7cb6e5be9c8e
Ancestors: ToolsTests-nice.104

Adds (currently failing) test for basic-inspecting a void ProtoObject. Since we expect the BasicInspector not to send any message to its object, this should not fail. Fixes are coming soon ...

=============== Diff against ToolsTests-nice.104 ===============

Item was added:
+ ----- Method: BasicInspectorTest>>testProtoObject (in category 'tests') -----
+ testProtoObject
+
+ self inspector object: ProtoObject new.
+ self assert: '*ProtoObject*' matches: self inspector labelString.
+ self testValuePane.!