From 3f8abbc29ddcd478014812d9eb92dd95c5a48215 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Wed, 13 May 2009 03:01:31 +0000 Subject: [PATCH] Update this test to work with the new USPS driver. --- t/Shop/Ship.t | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/t/Shop/Ship.t b/t/Shop/Ship.t index 354b35855..83e2ef962 100644 --- a/t/Shop/Ship.t +++ b/t/Shop/Ship.t @@ -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', );