Update this test to work with the new USPS driver.

This commit is contained in:
Colin Kuskie 2009-05-13 03:01:31 +00:00
parent 6fc0bf8866
commit 3f8abbc29d

View file

@ -87,9 +87,12 @@ my $drivers;
$drivers = $ship->getDrivers();
my @driverClasses = keys %{$drivers};
cmp_deeply(
cmp_bag(
\@driverClasses,
[ 'WebGUI::Shop::ShipDriver::FlatRate' ],
[
'WebGUI::Shop::ShipDriver::FlatRate',
'WebGUI::Shop::ShipDriver::USPS',
],
'getDrivers: WebGUI only ships with 1 default shipping driver',
);