summaryrefslogblamecommitdiff
path: root/t/03_serialization.t
blob: 8e7eea91b92e8a2c80ef29b7be104b85420f12f0 (plain) (tree)
1
2
3
4
5
6
7
8



               


                                 
 


                                                         

             
use strict;
use warnings;
use Test::More;

use Net::HTTP::API::Parser::XML;
use Net::HTTP::API::Parser::JSON;
use Net::HTTP::API::Parser::YAML;

ok my $xml_parser = Net::HTTP::API::Parser::XML->new();
ok my $yaml_parser = Net::HTTP::API::Parser::YAML->new();
ok my $json_parser = Net::HTTP::API::Parser::JSON->new();

done_testing;