The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

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

VERSION

version 0.005

SYNOPSIS

    # create a testing tracker
    my $tracker = Parcel::Track->new( 'KR::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 Regional-Class Test. Except for the name, it is otherwise identical to Parcel::Track::Test.

ATTRIBUTES

id

METHODS

uri

track

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.