#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use DDG::Test::Goodie;
zci answer_type => 'ips';
zci is_cached => 1;
ddg_goodie_test(
[qw( DDG::Goodie::IPS )],
'EM999999999IN' => test_zci(
"EM999999999IN",
heading => 'IPS Shipment Tracking',
html => qq(Track this shipment at IPS.)
),
'em123456789hr' => test_zci(
"em123456789hr",
heading => 'IPS Shipment Tracking',
html => qq(Track this shipment at IPS.)
),
'EM 999 999 999 IN' => test_zci(
"EM999999999IN",
heading => 'IPS Shipment Tracking',
html => qq(Track this shipment at IPS.)
)
);
done_testing;