summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-07-31 13:55:12 +0000
committerkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-07-31 13:55:12 +0000
commit6b4a6fcbbf286ee4b436b168b2fca186302cbb44 (patch)
tree1c3962a8fbb8ffee21c28998203cd527e3fb5fae
parent0c1139ea78dfe22834d916a45c76df1634d7bbcb (diff)
* test/rexml/test_notationdecl_mixin.rb: Remove duplicated tests.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42288 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--test/rexml/test_notationdecl_mixin.rb51
2 files changed, 4 insertions, 51 deletions
diff --git a/ChangeLog b/ChangeLog
index da94a95947..96a7db33b8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Jul 31 22:54:39 2013 Kouhei Sutou <kou@cozmixng.org>
+
+ * test/rexml/test_notationdecl_mixin.rb: Remove duplicated tests.
+
Wed Jul 31 22:52:55 2013 Kouhei Sutou <kou@cozmixng.org>
* test/rexml/test_notationdecl_parsetest.rb: Fix typos in expected
diff --git a/test/rexml/test_notationdecl_mixin.rb b/test/rexml/test_notationdecl_mixin.rb
deleted file mode 100644
index 18095b686e..0000000000
--- a/test/rexml/test_notationdecl_mixin.rb
+++ /dev/null
@@ -1,51 +0,0 @@
-require 'test/unit'
-require 'rexml/document'
-
-class TestNotationDeclMixin < Test::Unit::TestCase
- def setup
- @pubid1 = "TEST1"
- @pubid2 = "TEST2"
- @sysid2 = "urn:x-henrikmartensson.org:test2"
- @pubid3 = "TEST3"
- @pubid4 = "TEST4"
- @sysid4 = "urn:x-henrikmartensson.org:test4"
- @pubid5 = "TEST5"
- @sysid5 = "urn:x-henrikmartensson.org:test5"
- @pubid6 = "TEST6"
- @sysid6 = "urn:x-henrikmartensson.org:test6"
- @sysid7 = "urn:x-henrikmartensson.org:test7"
- doc_string = <<-"XMLEND"
- <!DOCTYPE r SYSTEM "urn:x-henrikmartensson:test" [
- <!NOTATION n1 PUBLIC "#{@pubid1}">
- <!NOTATION n2 PUBLIC "#{@pubid2}" "#{@sysid2}">
- <!NOTATION n3 PUBLIC '#{@pubid3}'>
- <!NOTATION n4 PUBLIC '#{@pubid4}' '#{@sysid4}'>
- <!NOTATION n5 PUBLIC "#{@pubid5}" '#{@sysid5}'>
- <!NOTATION n6 PUBLIC '#{@pubid6}' "#{@sysid6}">
- <!NOTATION n7 SYSTEM "#{@sysid7}">
- ]>
- <r/>
- XMLEND
- @doctype = REXML::Document.new(doc_string).doctype
- end
-
- def test_public_2
- assert_equal(@pubid1, @doctype.notation('n1').public)
- assert_equal(@pubid2, @doctype.notation('n2').public)
- assert_equal(@pubid3, @doctype.notation('n3').public)
- assert_equal(@pubid4, @doctype.notation('n4').public)
- assert_equal(@pubid5, @doctype.notation('n5').public)
- assert_equal(@pubid6, @doctype.notation('n6').public)
- assert_nil(@doctype.notation('n7').public)
- end
-
- def test_system_2
- assert_equal(@sysid2, @doctype.notation('n2').system)
- assert_nil(@doctype.notation('n3').system)
- assert_equal(@sysid4, @doctype.notation('n4').system)
- assert_equal(@sysid5, @doctype.notation('n5').system)
- assert_equal(@sysid6, @doctype.notation('n6').system)
- assert_equal(@sysid7, @doctype.notation('n7').system)
- end
-
-end