The Trunk: Tests-ul.150.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-ul.150.mcz

commits-2
Levente Uzonyi uploaded a new version of Tests to project The Trunk:
http://source.squeak.org/trunk/Tests-ul.150.mcz

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

Name: Tests-ul.150
Author: ul
Time: 30 March 2012, 1:00:14.758 pm
UUID: 3bdfe91d-dd7a-8343-947d-a384963ecc77
Ancestors: Tests-bp.149

- fix: FileDirectoryTest >> #testDirectoryNicknames should use FileDirectory slash instead of '/'

=============== Diff against Tests-bp.149 ===============

Item was changed:
  ----- Method: FileDirectoryTest>>testDirectoryNicknames (in category 'existence tests') -----
  testDirectoryNicknames
+
  | defaultDirectory |
  defaultDirectory := FileDirectory default.
+ #('/.' '/../../.' '/././.')
+ collect: [ :each | each copyReplaceAll: '/' with: FileDirectory slash ]
+ thenDo: [:each |
+ self assert: (defaultDirectory directoryExists: defaultDirectory fullName, each) ]!
- #('/.' '/../../.' '/././.') do: [:each |
- self assert: (defaultDirectory directoryExists: defaultDirectory fullName, each).
- ].
- !