#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use DDG::Test::Goodie;
zci answer_type => 'lasership';
zci is_cached => 1;
ddg_goodie_test(
[qw( DDG::Goodie::LaserShip )],
'LL12345678' => test_zci(
"LL12345678",
heading => 'Lasership Shipment Tracking',
html => qq(Track this shipment at Lasership.)
),
'LL 12345678' => test_zci(
"LL12345678",
heading => 'Lasership Shipment Tracking',
html => qq(Track this shipment at Lasership.)
),
'1LS12345678999999999' => undef
);
done_testing;