File: issue-149.t

package info (click to toggle)
libyaml-perl 1.31-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 672 kB
  • sloc: perl: 2,294; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 153 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
use Test::More;
use YAML;

YAML::Load("a: b");
YAML::Load("a:\n  b: c");
YAML::Load("a: b\nc: d");

pass "YAML w/o final newlines loads";

done_testing;