The Trunk: Tests-ct.419.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-ct.419.mcz

commits-2
Marcel Taeumel uploaded a new version of Tests to project The Trunk:
http://source.squeak.org/trunk/Tests-ct.419.mcz

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

Name: Tests-ct.419
Author: ct
Time: 1 October 2019, 4:28:42.992339 pm
UUID: 63e06a89-0e97-2148-9c0c-79494748ca43
Ancestors: Tests-ul.418

Add regression test for a bug in SystemNavigation>>#allImplementorsOf:localTo: (a fix is coming soon)

=============== Diff against Tests-ul.418 ===============

Item was added:
+ ----- Method: SystemNavigationTest>>testAllImplementorsOfLocalTo (in category 'tests') -----
+ testAllImplementorsOfLocalTo
+ | result |
+ result := sysNav allImplementorsOf: #yourself localTo: Morph.
+ self assert: [result size = 1].
+ self assert: [result includes: (MethodReference class: Object selector: #yourself)].!