DEBSOURCES
Skip Quicknav
sources / libyaml-syck-perl / 1.20-1 / t / json-newline.t
123456789
use JSON::Syck; use Test::More tests => 1; my $dump = JSON::Syck::Dump({a => "hello\nworld\n"}); is $dump, q({"a":"hello\nworld\n"});