The Trunk: CollectionsTests-mt.243.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-mt.243.mcz

commits-2
Marcel Taeumel uploaded a new version of CollectionsTests to project The Trunk:
http://source.squeak.org/trunk/CollectionsTests-mt.243.mcz

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

Name: CollectionsTests-mt.243
Author: mt
Time: 3 May 2015, 10:39:28.204 pm
UUID: 1411adb4-9969-694c-9904-5f4abac42c5e
Ancestors: CollectionsTests-mt.242

test for parsing comments in html read/writer added

=============== Diff against CollectionsTests-mt.242 ===============

Item was added:
+ ----- Method: HtmlReadWriterTest>>test06Comments (in category 'tests') -----
+ test06Comments
+
+ | expectedText |
+ expectedText := 'Hello & World!!' asText
+ addAttribute: TextEmphasis bold.
+
+ self convertHtml: '
+ <!!-- This is <> JUST!! &&;; a COMMENT!! -->
+ <b>Hello &amp; World!!</b>'.
+
+ self assert: expectedText string equals: text string.
+ self assert: expectedText runs equals: text runs.!