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

@ -746,7 +746,7 @@ one-off basis.
=head2 Method Dictionary
The following methods will be available from the
WebGUI::Shop::Ship::Driver class.
WebGUI::Shop::ShipDriver class.
Method
@ -829,7 +829,7 @@ one-off basis.
=head2 Method Dictionary
The following methods will be available from the
WebGUI::Shop::Ship::Driver::Flat class.
WebGUI::Shop::ShipDriver::Flat class.
Method

View file

@ -1,4 +1,4 @@
package WebGUI::Shop::ShipperDriver;
package WebGUI::Shop::ShipDriver;
use strict;
@ -7,7 +7,7 @@ use Carp qw(croak);
=head1 NAME
Package WebGUI::Shop::ShipperDriver
Package WebGUI::Shop::ShipDriver
=head1 DESCRIPTION
@ -17,9 +17,9 @@ handling the information in the tax tables.
=head1 SYNOPSIS
use WebGUI::Shop::ShipperDriver;
use WebGUI::Shop::ShipDriver;
my $tax = WebGUI::Shop::ShipperDriver->new($session);
my $tax = WebGUI::Shop::ShipDriver->new($session);
=head1 METHODS

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');