~ubuntu-branches/ubuntu/saucy/libapache-session-perl/saucy

« back to all changes in this revision

Viewing changes to t/99dbfilestore.t

  • Committer: Bazaar Package Importer
  • Author(s): Gunnar Wolf
  • Date: 2007-03-21 11:53:52 UTC
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: james.westby@ubuntu.com-20070321115352-29o71d4163l36ugw
Tags: upstream-1.82
ImportĀ upstreamĀ versionĀ 1.82

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
my $package = 'Apache::Session::Store::DB_File';
13
13
 
 
14
plan tests => 13;
 
15
 
 
16
use_ok $package;
 
17
use_ok 'DB_File';
 
18
can_ok $package, qw[new insert materialize remove];
 
19
 
14
20
my $origdir = getcwd;
15
21
my $tempdir = tempdir( DIR => '.', CLEANUP => 1 );
16
22
chdir( $tempdir );
28
34
                  },
29
35
};
30
36
 
31
 
plan tests => 13;
32
 
 
33
 
use_ok $package;
34
 
use_ok 'DB_File';
35
 
can_ok $package, qw[new insert materialize remove];
36
 
 
37
37
my $store = $package->new;
38
38
isa_ok $store, $package;
39
39