The Trunk: MultilingualTests-fbs.18.mcz

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

The Trunk: MultilingualTests-fbs.18.mcz

commits-2
Frank Shearar uploaded a new version of MultilingualTests to project The Trunk:
http://source.squeak.org/trunk/MultilingualTests-fbs.18.mcz

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

Name: MultilingualTests-fbs.18
Author: fbs
Time: 6 November 2013, 6:35:02.811 pm
UUID: 07e26018-8455-3349-9b44-9ecb4aaeefb2
Ancestors: MultilingualTests-nice.17

More #shouldnt:raise: Error fixes.

=============== Diff against MultilingualTests-nice.17 ===============

Item was changed:
  ----- Method: UTF8TextConverterTest>>testLazyConversion (in category 'tests') -----
  testLazyConversion
  "Ensure the lazy conversions do what they should"
 
  | strict result |
  strict := UTF8TextConverter strictUtf8Conversions.
  [UTF8TextConverter strictUtf8Conversions: false.
+ result := 'Grüß Gott' utf8ToSqueak.
- self shouldnt:[result := 'Grüß Gott' utf8ToSqueak ] raise: Error.
  ] ensure:[UTF8TextConverter strictUtf8Conversions: strict].
 
  self assert: result = 'Grüß Gott'.
  !