summaryrefslogtreecommitdiff
path: root/t/03_serialization.t
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-07-16 16:10:50 +0200
committerfranck cuny <franck@lumberjaph.net>2010-07-16 16:10:50 +0200
commit5b31a98ed109e378ce0e5920d716d47c7d6dca9c (patch)
treef1c0384005bd5e33ba0435512547ddc9cb8fc4a6 /t/03_serialization.t
parentrename from mx::net::api to net::http::api (diff)
downloadnet-http-api-5b31a98ed109e378ce0e5920d716d47c7d6dca9c.tar.gz
rename from mx::net::api to net::http::api
Diffstat (limited to 't/03_serialization.t')
-rw-r--r--t/03_serialization.t12
1 files changed, 6 insertions, 6 deletions
diff --git a/t/03_serialization.t b/t/03_serialization.t
index 5fa45c2..8e7eea9 100644
--- a/t/03_serialization.t
+++ b/t/03_serialization.t
@@ -2,12 +2,12 @@ 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;
+use Net::HTTP::API::Parser::XML;
+use Net::HTTP::API::Parser::JSON;
+use Net::HTTP::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();
+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;