finalize names and update docs to match

This commit is contained in:
Colin Kuskie 2008-02-19 18:33:45 +00:00
parent 995ae35bb0
commit 02011a7d37
3 changed files with 10 additions and 10 deletions

View file

@ -34,13 +34,13 @@ plan tests => 1 + $tests;
#----------------------------------------------------------------------------
# put your tests here
my $loaded = use_ok('WebGUI::Shop::ShipperDriver');
my $loaded = use_ok('WebGUI::Shop::ShipDriver');
my $storage;
SKIP: {
skip 'Unable to load module WebGUI::Shop::ShipperDriver', $tests unless $loaded;
skip 'Unable to load module WebGUI::Shop::ShipDriver', $tests unless $loaded;
#######################################################################
#
@ -48,9 +48,9 @@ skip 'Unable to load module WebGUI::Shop::ShipperDriver', $tests unless $loaded;
#
#######################################################################
my $driver = WebGUI::Shop::ShipperDriver->new($session);
my $driver = WebGUI::Shop::ShipDriver->new($session);
isa_ok($driver, 'WebGUI::Shop::ShipperDriver');
isa_ok($driver, 'WebGUI::Shop::ShipDriver');
isa_ok($driver->session, 'WebGUI::Session', 'session method returns a session object');