1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
use strict;
use lib -e 't' ? 't' : 'test';
use TestYAML tests => 8;
run_load_passes();
__DATA__
=== Bug reported by Rich Morin
+++ SKIP
+++ yaml
foo:
- >
This is a test.
=== Bug reported by audreyt
+++ SKIP
+++ yaml
--- "\n\
\r"
===
+++ yaml
---
foo:
bar:
baz:
poo: bah
===
+++ yaml
--- 42
===
+++ yaml
# comment
--- 42
# comment
===
+++ yaml
--- [1, 2, 3]
===
+++ yaml
--- {foo: bar, bar: 42}
===
+++ yaml
--- !foo.com/bar
- 2
===
+++ yaml
--- &1 !foo.com/bar
- 42
===
+++ yaml
---
- 40
- 41
- foof
|