File: long_plain_wrap.t

package info (click to toggle)
libyaml-libyaml-perl 0.76%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 688 kB
  • sloc: perl: 1,603; ansic: 1,140; sh: 29; makefile: 4
file content (12 lines) | stat: -rw-r--r-- 421 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
use Test::More; # tests => 1;

use YAML::XS;

plan skip_all => 'Failing test. Not yet implemented';

my $p = {my_key => "When foo or foobar is used, everyone understands that these are just examples, and they dont really exist."};
my $e = <<'...';
---
my_key: When foo or foobar is used, everyone understands that these are just examples, and they dont really exist.
...
is Dump($p), $e, "Long plain scalars don't wrap";