NAME

Parcel::Track::Test - Parcel::Track driver for the Regional-Class Test

VERSION

version 0.005

SYNOPSIS

# create a testing tracker
my $tracker = Parcel::Track->new( 'Test', '64537-0301-2020' );

# get the tracking number
say $tracker->id;

# get the tracking information official uri
say $tracker->uri;

# get the tracking information
my $info = $tracker->track;
say $info->{from};
say $info->{to};
say $info->{result};
say for @{ $info->{descs} };
say for @{ $info->{htmls} };

DESCRIPTION

This module is a Parcel::Track driver for the International-Class Test. Except for the name, it is otherwise identical to Parcel::Track::KR::Test.

ATTRIBUTES

id

METHODS

uri

track

foo

bar

clear

AUTHOR

김도형 - Keedi Kim <keedi@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2015 by Keedi Kim.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.