summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorLaurent Arnoud <laurent@spkdev.net>2019-12-29 17:04:27 +0000
committerPatrick Way <patrick@hexane.org>2019-12-29 12:04:27 -0500
commit96758e813d3e3ff1d03073e8b7badb2535c5ab76 (patch)
tree242570eefbc0517f1bc94a2054128fd1f210fde1 /test
parentc4ea1afce01d53571525460784285e9effa96568 (diff)
downloadplist-96758e813d3e3ff1d03073e8b7badb2535c5ab76.tar.gz
Add error unimplemented (#51)
* Add test for unimplemented error * Add UnimplementedElementError exception
Diffstat (limited to 'test')
-rwxr-xr-xtest/test_parser.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/test_parser.rb b/test/test_parser.rb
index f110a9f..7b692a5 100755
--- a/test/test_parser.rb
+++ b/test/test_parser.rb
@@ -116,4 +116,10 @@ class TestParser < Test::Unit::TestCase
assert_equal("\u0099", data["non-ascii-but-utf8-character"])
end
end
+
+ def test_unimplemented_element
+ assert_raise Plist::UnimplementedElementError do
+ Plist.parse_xml('<string>Fish &amp; Chips</tring>')
+ end
+ end
end