The Trunk: MorphicExtrasTests-fbs.3.mcz

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

The Trunk: MorphicExtrasTests-fbs.3.mcz

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

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

Name: MorphicExtrasTests-fbs.3
Author: fbs
Time: 30 November 2013, 11:03:19.679 pm
UUID: 1c039763-bc92-834c-943e-d96d8820cbd7
Ancestors: MorphicExtrasTests-fbs.2

Tests for MorphicExtras's selector mangling.

=============== Diff against MorphicExtrasTests-fbs.2 ===============

Item was added:
+ TestCase subclass: #MorphicExtrasSymbolExtensionsTest
+ instanceVariableNames: ''
+ classVariableNames: ''
+ poolDictionaries: ''
+ category: 'MorphicExtrasTests-Flaps'!

Item was added:
+ ----- Method: MorphicExtrasSymbolExtensionsTest>>testAsSimpleSetterReturnsSetterSelector (in category 'as yet unclassified') -----
+ testAsSimpleSetterReturnsSetterSelector
+ self assert: #foo: equals: #foo asSimpleSetter.
+
+ "And it really is 'simple':"
+ self assert: #foo:: equals: #foo: asSimpleSetter.!