[squeak-dev] The Trunk: Tests-cmm.250.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Aug 31 21:17:36 UTC 2013


Chris Muller uploaded a new version of Tests to project The Trunk:
http://source.squeak.org/trunk/Tests-cmm.250.mcz

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

Name: Tests-cmm.250
Author: cmm
Time: 31 August 2013, 4:17:10.853 pm
UUID: eb71599e-9529-46a5-82e6-3ff0f6466065
Ancestors: Tests-cmm.249, Tests-fbs.247

- Merged fbs.247.
- 'external-packages' category renamed to 'package-definitions' because it now includes internal packages.

=============== Diff against Tests-cmm.249 ===============

Item was changed:
  ----- Method: InstallerTestSuite>>ensureTestMethods (in category 'initialize-release') -----
  ensureTestMethods
  	"Ensure InstallerTest has test methods for each externally-loadable package defined by Installer.  By generating these methods, they don't have to be maintained separately."
+ 	^ (Installer methodsInCategory: 'package-definitions') do:
- 	^ (Installer methodsInCategory: 'external-packages') do:
  		[ : each | (InstallerTest canUnderstand: each) ifFalse:
  			[ InstallerTest 
  				compile:
  					(String streamContents:
  						[ : stream | stream
  							 nextPutAll: 'test'; nextPutAll: each;
  							 cr; tab;
  							 nextPutAll: 'Installer new merge: #'; nextPutAll: each ])
  				classified: '*generated' ] ]!

Item was changed:
  ----- Method: PackageDependencyTest>>testEtoys (in category 'tests') -----
  testEtoys
  	self testPackage: 'EToys' dependsExactlyOn: #(
  		Balloon
  		Collections
  		Compiler
  		Compression
  		Files
  		Graphics
  		Kernel
  		Morphic
  		MorphicExtras
  		Network
+ 		PreferenceBrowser
  		Protocols
  		SUnit
  		System
  		'ToolBuilder-Kernel'
  		Tools
  	).!

Item was changed:
  ----- Method: PackageDependencyTest>>testPreferenceBrowser (in category 'tests') -----
  testPreferenceBrowser
  	self testPackage: 'PreferenceBrowser' dependsExactlyOn: #(
  		Collections
- 		EToys
  		Graphics
  		Kernel
  		Morphic
  		MorphicExtras
  		System
  		Tools
  	).!



More information about the Squeak-dev mailing list