File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -16,12 +16,6 @@ def setup
16
16
@doc_type_system = REXML ::Document . new ( xml_system ) . doctype
17
17
18
18
@pubid = "TEST_ID"
19
- xml_public = <<-XML
20
- <!DOCTYPE root PUBLIC "#{ @pubid } ">
21
- <root/>
22
- XML
23
- @doc_type_public = REXML ::Document . new ( xml_public ) . doctype
24
-
25
19
xml_public_system = <<-XML
26
20
<!DOCTYPE root PUBLIC "#{ @pubid } " "#{ @sysid } ">
27
21
<root/>
@@ -33,11 +27,9 @@ def test_public
33
27
assert_equal ( [
34
28
nil ,
35
29
@pubid ,
36
- @pubid ,
37
30
] ,
38
31
[
39
32
@doc_type_system . public ,
40
- @doc_type_public . public ,
41
33
@doc_type_public_system . public ,
42
34
] )
43
35
end
@@ -56,12 +48,10 @@ def test_to_s_apostrophe
56
48
def test_system
57
49
assert_equal ( [
58
50
@sysid ,
59
- nil ,
60
51
@sysid ,
61
52
] ,
62
53
[
63
54
@doc_type_system . system ,
64
- @doc_type_public . system ,
65
55
@doc_type_public_system . system ,
66
56
] )
67
57
end
You can’t perform that action at this time.
0 commit comments