[squeak-dev] The Trunk: Tests-fbs.204.mcz

commits at source.squeak.org commits at source.squeak.org
Fri May 3 22:21:12 UTC 2013


Frank Shearar uploaded a new version of Tests to project The Trunk:
http://source.squeak.org/trunk/Tests-fbs.204.mcz

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

Name: Tests-fbs.204
Author: fbs
Time: 3 May 2013, 11:20:43.961 pm
UUID: 69db58fe-ee6f-478a-a1cd-7923c5f6c92a
Ancestors: Tests-fbs.203

Matching tests for the InstallerUrl fix.

=============== Diff against Tests-fbs.203 ===============

Item was added:
+ TestCase subclass: #InstallerUrlTest
+ 	instanceVariableNames: ''
+ 	classVariableNames: ''
+ 	poolDictionaries: ''
+ 	category: 'Tests-Installer-Core'!

Item was added:
+ ----- Method: InstallerUrlTest>>testAddPackageShouldResultInCorrectUrl (in category 'as yet unclassified') -----
+ testAddPackageShouldResultInCorrectUrl
+ 	| url |
+ 	url := (Installer url: 'http://seaside.gemstone.com/ss/metacello')
+ 	    addPackage: 'ConfigurationOfMetacello-dkh.754.mcz';
+ 	    urlToDownload.
+ 	"Note the insertion of a / in the URL."
+ 	self
+ 		assert: 'http://seaside.gemstone.com/ss/metacello/ConfigurationOfMetacello-dkh.754.mcz'
+ 		equals: url.!



More information about the Squeak-dev mailing list