%PDF- %PDF-
Direktori : /root/.cpanm/work/1590825950.14464/YAML-Syck-1.32/t/ |
Current File : //root/.cpanm/work/1590825950.14464/YAML-Syck-1.32/t/json-null.t |
use strict; use FindBin; BEGIN { push @INC, $FindBin::Bin } use TestYAML (); use Test::More tests => 2; use JSON::Syck; my $dat = JSON::Syck::Dump( { foo => undef } ); like $dat, qr/null/; $dat = JSON::Syck::Dump( { foo => !1 } ); unlike $dat, qr/"foo":}/;