The Trunk: CollectionsTests-topa.245.mcz

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

The Trunk: CollectionsTests-topa.245.mcz

commits-2
Tobias Pape uploaded a new version of CollectionsTests to project The Trunk:
http://source.squeak.org/trunk/CollectionsTests-topa.245.mcz

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

Name: CollectionsTests-topa.245
Author: topa
Time: 8 July 2015, 3:48:12.815 pm
UUID: d0cc9aa1-75e5-4177-ae0c-54e927b8b505
Ancestors: CollectionsTests-topa.244

Let's say PluggableTextAttribute are not serializable.

=============== Diff against CollectionsTests-topa.244 ===============

Item was changed:
  ----- Method: TextAttributesScanningTest>>testPluggableTextAttribute (in category 'testing') -----
  testPluggableTextAttribute
  | att strm |
  att := PluggableTextAttribute evalBlock: [ #foo ].
  strm := WriteStream on: ''.
  self assert: (att respondsTo: #writeScanOn:).
+ self
+ should: [att writeScanOn: strm]
+ raise: Error
+ description: 'PluggableTextAttribute are not intended to be serialized'.
- att writeScanOn: strm.
- "FIXME: PluggableTextAttribute used by SqueakMap. Currently it cannot
- be filed out, so this probably needs fixing. See RunArray class>>scanFrom:"
  !