From a652c8f79097392c46ed51760ead2499fa61b45d Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 14 May 2012 21:06:26 -0400 Subject: The gold files for the test for #179. --- test/farm/html/gold_bom/bom.html | 104 +++++++++++++++++++++++++++++++++++++ test/farm/html/gold_bom/index.html | 90 ++++++++++++++++++++++++++++++++ 2 files changed, 194 insertions(+) create mode 100644 test/farm/html/gold_bom/bom.html create mode 100644 test/farm/html/gold_bom/index.html diff --git a/test/farm/html/gold_bom/bom.html b/test/farm/html/gold_bom/bom.html new file mode 100644 index 00000000..1d61a62c --- /dev/null +++ b/test/farm/html/gold_bom/bom.html @@ -0,0 +1,104 @@ + + + + + + + + Coverage for bom: 71% + + + + + + + + + + + + +
+ +

Hot-keys on this page

+
+

+ r + m + x + p   toggle line displays +

+

+ j + k   next/prev highlighted chunk +

+

+ 0   (zero) top of page +

+

+ 1   (one) first highlighted chunk +

+
+
+ +
+ + + + + +
+

1

+

2

+

3

+

4

+

5

+

6

+

7

+

8

+

9

+

10

+

11

+ +
+

# A python source file in utf-8, with BOM 

+

math = "3×4 = 12, ÷2 = 6±0" 

+

 

+

import sys 

+

 

+

if sys.version_info >= (3, 0): 

+

    assert len(math) == 18 

+

    assert len(math.encode('utf-8')) == 21 

+

else: 

+

    assert len(math) == 21 

+

    assert len(math.decode('utf-8')) == 18 

+ +
+
+ + + + + diff --git a/test/farm/html/gold_bom/index.html b/test/farm/html/gold_bom/index.html new file mode 100644 index 00000000..8653b23e --- /dev/null +++ b/test/farm/html/gold_bom/index.html @@ -0,0 +1,90 @@ + + + + + Coverage report + + + + + + + + + + + + +
+ +

Hot-keys on this page

+
+

+ n + s + m + x + + c   change column sorting +

+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Modulestatementsmissingexcludedcoverage
Total72071%
bom72071%
+
+ + + + + -- cgit v1.2.1