summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2009-09-26 21:57:32 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2009-09-26 21:57:32 -0700
commit81064b63f140ff913cd4e5c9fa57b036fc5dca4e (patch)
tree13a8c506d82a73b621e1452e01abb343a07f17f7
parent8e40ad6074f9eb5958735878e44aa2ca9fcdda1c (diff)
downloadpsych-81064b63f140ff913cd4e5c9fa57b036fc5dca4e.zip
fixing test names
-rw-r--r--test/psych/test_parser.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/psych/test_parser.rb b/test/psych/test_parser.rb
index 13d4376..d32f63a 100644
--- a/test/psych/test_parser.rb
+++ b/test/psych/test_parser.rb
@@ -38,12 +38,12 @@ module Psych
assert_called :end_document, [true]
end
- def test_end_document_explicit
+ def test_end_document_implicit
@parser.parse("\"foo\"\n")
assert_called :end_document, [true]
end
- def test_start_document_implicit
+ def test_end_document_explicit
@parser.parse("\"foo\"\n...")
assert_called :end_document, [false]
end