diff options
| author | Edward Barnard | 2015-08-04 15:44:04 +0100 |
|---|---|---|
| committer | Edward Barnard | 2015-08-04 15:49:16 +0100 |
| commit | 9e8196ba875e4f8602a8c619fbbac08a1559602d (patch) | |
| tree | bc713b7255e9331d8b6645a49ac2b39e93d670ba /tests | |
| download | rust-plist-9e8196ba875e4f8602a8c619fbbac08a1559602d.tar.bz2 | |
Basic streaming pull parser support
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/data/simple.plist | 15 |
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 |
