From 70f657d0424856b4bc9c311e2f1b444b381bd6dd Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Fri, 30 May 2008 07:14:39 +0000 Subject: [PATCH] account for another default paydriver not that itransact has been added --- t/Shop/Pay.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/t/Shop/Pay.t b/t/Shop/Pay.t index cff4ee13e..ad683a1e7 100644 --- a/t/Shop/Pay.t +++ b/t/Shop/Pay.t @@ -150,7 +150,8 @@ is($newDriver->label, 'JAL', 'label passed correctly to paydriver'); my $drivers = $pay->getDrivers(); my $defaultPayDrivers = { - 'WebGUI::Shop::PayDriver::Cash' => 'Cash', + 'WebGUI::Shop::PayDriver::Cash' => 'Cash', + 'WebGUI::Shop::PayDriver::ITransact' => 'Itransact', }; cmp_deeply( $drivers, $defaultPayDrivers, 'getDrivers returns the default PayDrivers');