blob: 5fa45c2c3380d4bda290d68c94fddcf00ae6344c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
use strict;
use warnings;
use Test::More;
use MooseX::Net::API::Parser::XML;
use MooseX::Net::API::Parser::JSON;
use MooseX::Net::API::Parser::YAML;
ok my $xml_parser = MooseX::Net::API::Parser::XML->new();
ok my $yaml_parser = MooseX::Net::API::Parser::YAML->new();
ok my $json_parser = MooseX::Net::API::Parser::JSON->new();
done_testing;
|