The Trunk: MorphicTests-pre.54.mcz

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

The Trunk: MorphicTests-pre.54.mcz

commits-2
Patrick Rein uploaded a new version of MorphicTests to project The Trunk:
http://source.squeak.org/trunk/MorphicTests-pre.54.mcz

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

Name: MorphicTests-pre.54
Author: pre
Time: 4 October 2019, 1:19:39.796303 pm
UUID: ce92221a-605f-c740-af98-063a12b6bb72
Ancestors: MorphicTests-pre.53

Removes the tests for the text modification character set on TextMorphForEditView which became obsolete with the new #hasUserEdited solution

=============== Diff against MorphicTests-pre.53 ===============

Item was removed:
- TestCase subclass: #TextMorphForEditViewTest
- instanceVariableNames: 'morph'
- classVariableNames: ''
- poolDictionaries: ''
- category: 'MorphicTests-Text Support'!

Item was removed:
- ----- Method: TextMorphForEditViewTest>>setUp (in category 'running') -----
- setUp
-
- morph := TextMorphForEditView new!

Item was removed:
- ----- Method: TextMorphForEditViewTest>>testCharactersModifyingText (in category 'tests') -----
- testCharactersModifyingText
-
- {$a . $: . $+ . Character backspace . Character delete . $2 . Character space . Character tab .$ΓΌ } do: [:char |
- self assert: (morph eventCharacterModifiesText: char)]
- !

Item was removed:
- ----- Method: TextMorphForEditViewTest>>testCharactersNotModifyingText (in category 'tests') -----
- testCharactersNotModifyingText
-
- #(0 1 2 3) do: [:charCode |
- self deny: (morph eventCharacterModifiesText: (Character value: charCode))]!