[squeak-dev] The Trunk: MorphicTests-pre.54.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Oct 4 11:19:40 UTC 2019


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))]!



More information about the Squeak-dev mailing list