File: e00_func.t

package info (click to toggle)
libjson-perl 2.61-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 572 kB
  • ctags: 148
  • sloc: perl: 2,419; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 309 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

use Test::More;
use strict;
BEGIN { plan tests => 2 };
BEGIN { $ENV{PERL_JSON_BACKEND} = "JSON::backportPP"; }
use JSON;
#########################

my $json = JSON->new;

my $js = 'abc';


is(to_json($js, {allow_nonref => 1}), '"abc"');

is(from_json('"abc"', {allow_nonref => 1}), 'abc');