1use Test::More; # tests => 1;
2
3use YAML::XS;
4
5plan skip_all => 'Failing test. Not yet implemented';
6
7my $p = {my_key => "When foo or foobar is used, everyone understands that these are just examples, and they dont really exist."};
8my $e = <<'...';
9---
10my_key: When foo or foobar is used, everyone understands that these are just examples, and they dont really exist.
11...
12is Dump($p), $e, "Long plain scalars don't wrap";
13