[squeak-dev] The Inbox: Tests-jr.364.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Feb 12 15:56:28 UTC 2017


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

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

Name: Tests-jr.364
Author: jr
Time: 12 February 2017, 4:47:21.961498 pm
UUID: d667c4fa-e933-2046-bd88-4a35137490dd
Ancestors: Tests-jr.363

add a Trait to the Monticello test mocks

so a Trait is included in all tests that operate on the mockPackage

=============== Diff against Tests-jr.363 ===============

Item was changed:
  ----- Method: MCMockPackageInfo>>classNames (in category 'as yet unclassified') -----
  classNames
  	^ #(	MCMockClassA
  		 	MCMockASubclass
  			MCMockClassB
  			MCMockClassD
  			MCMockClassE
  			MCMockClassF
  			MCMockClassG
  			MCMockClassH
  			MCMockClassI
+ 			MCMockTraitA
  		)!

Item was changed:
  ----- Method: MCMockPackageInfo>>classes (in category 'as yet unclassified') -----
  classes
  	^ self classNames 
+ 		select: [:name | Environment current hasClassOrTraitNamed: name]
+ 		thenCollect: [:name | Environment current at: name]!
- 		select: [:name | Smalltalk hasClassNamed: name]
- 		thenCollect: [:name | Smalltalk at: name]!

Item was added:
+ Trait named: #MCMockTraitA
+ 	uses: {}
+ 	category: 'Tests-Monticello-Mocks'!
+ 
+ !MCMockTraitA commentStamp: 'jr 2/11/2017 17:40' prior: 0!
+ This is the comment for a mock trait.!



More information about the Squeak-dev mailing list