[squeak-dev] The Inbox: Tests-cwp.175.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Oct 24 21:52:14 UTC 2012


A new version of Tests was added to project The Inbox:
http://source.squeak.org/inbox/Tests-cwp.175.mcz

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

Name: Tests-cwp.175
Author: cwp
Time: 24 October 2012, 2:51:57.527 pm
UUID: 6a009ff2-a82e-4905-ab57-4f4d5b4a9818
Ancestors: Tests-cwp.174

Added more #numArgs tests.

=============== Diff against Tests-cwp.174 ===============

Item was added:
+ ----- Method: UnderscoreSelectorsTest>>testInvalidUnderscoreAllowed (in category 'tests') -----
+ testInvalidUnderscoreAllowed
+ 	self pref: true during: [self assertString: '3' hasNumArgs: -1]!

Item was added:
+ ----- Method: UnderscoreSelectorsTest>>testInvalidUnderscoreForbidden (in category 'tests') -----
+ testInvalidUnderscoreForbidden
+ 	self pref: false during: [self assertString: '3' hasNumArgs: -1]!

Item was added:
+ ----- Method: UnderscoreSelectorsTest>>testLeadingColonAllowed (in category 'tests') -----
+ testLeadingColonAllowed
+ 	self pref: true during: [self assertString: ':if:then:else:' hasNumArgs: -1]!

Item was added:
+ ----- Method: UnderscoreSelectorsTest>>testLeadingColonForbidden (in category 'tests') -----
+ testLeadingColonForbidden
+ 	self pref: false during: [self assertString: #':if:then:else:' hasNumArgs: -1]!

Item was added:
+ ----- Method: UnderscoreSelectorsTest>>testNoTrailingColonAllowed (in category 'tests') -----
+ testNoTrailingColonAllowed
+ 	self pref: true during: [self assertString: 'nextPut:andCR' hasNumArgs: -1]!

Item was added:
+ ----- Method: UnderscoreSelectorsTest>>testNoTrailingColonForbidden (in category 'tests') -----
+ testNoTrailingColonForbidden
+ 	self pref: false during: [self assertString: 'nextPut:andCR' hasNumArgs: -1]!

Item was added:
+ ----- Method: UnderscoreSelectorsTest>>testSelEmpty (in category 'tests') -----
+ testSelEmpty
+ 	self assertString: #'' hasNumArgs: -1!

Item was added:
+ ----- Method: UnderscoreSelectorsTest>>testSelInvalidUnderscoreAllowed (in category 'tests') -----
+ testSelInvalidUnderscoreAllowed
+ 	self pref: true during: [self assertString: #'3' hasNumArgs: -1]!

Item was added:
+ ----- Method: UnderscoreSelectorsTest>>testSelInvalidUnderscoreForbidden (in category 'tests') -----
+ testSelInvalidUnderscoreForbidden
+ 	self pref: false during: [self assertString: #'3' hasNumArgs: -1]!

Item was added:
+ ----- Method: UnderscoreSelectorsTest>>testSelLeadingColonAllowed (in category 'tests') -----
+ testSelLeadingColonAllowed
+ 	self pref: true during: [self assertString: #':if:then:else:' hasNumArgs: -1]!

Item was added:
+ ----- Method: UnderscoreSelectorsTest>>testSelNoTrailingColonAllowed (in category 'tests') -----
+ testSelNoTrailingColonAllowed
+ 	self pref: true during: [self assertString: #'nextPut:andCR' hasNumArgs: -1]!

Item was added:
+ ----- Method: UnderscoreSelectorsTest>>testSelNoTrailingColonForbidden (in category 'tests') -----
+ testSelNoTrailingColonForbidden
+ 	self pref: false during: [self assertString: #'nextPut:andCR' hasNumArgs: -1]!



More information about the Squeak-dev mailing list