aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorEdward Barnard2015-08-04 15:44:04 +0100
committerEdward Barnard2015-08-04 15:49:16 +0100
commit9e8196ba875e4f8602a8c619fbbac08a1559602d (patch)
treebc713b7255e9331d8b6645a49ac2b39e93d670ba /tests
downloadrust-plist-9e8196ba875e4f8602a8c619fbbac08a1559602d.tar.bz2
Basic streaming pull parser support
Diffstat (limited to 'tests')
-rw-r--r--tests/data/simple.plist15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/data/simple.plist b/tests/data/simple.plist
new file mode 100644
index 0000000..c48e224
--- /dev/null
+++ b/tests/data/simple.plist
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
+<plist version="1.0">
+<dict>
+ <key>Author</key>
+ <string>William Shakespeare</string>
+ <key>Lines</key>
+ <array>
+ <string>It is a tale told by an idiot,</string>
+ <string>Full of sound and fury, signifying nothing.</string>
+ </array>
+ <key>Birthdate</key>
+ <integer>1564</integer>
+</dict>
+</plist> \ No newline at end of file