[squeak-dev] The Trunk: Tests-ul.150.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Mar 30 11:00:56 UTC 2012


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).
- 	].
- !



More information about the Squeak-dev mailing list