The Trunk: Tests-fbs.204.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Tests-fbs.204.mcz

commits-2
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.!