parent
eca3c8d803
commit
20894c05a5
@ -0,0 +1,6 @@ |
||||
Revision history for Perl extension Apache::Session::NoSQL. |
||||
|
||||
0.01 Thu May 13 09:06:50 2010 |
||||
- original version; created by h2xs 1.23 with options |
||||
-AXn Apache::Session::NoSQL |
||||
|
@ -0,0 +1,9 @@ |
||||
Changes |
||||
examples/simple.pl |
||||
lib/Apache/Session/NoSQL.pm |
||||
lib/Apache/Session/Store/NoSQL.pm |
||||
lib/Apache/Session/Store/NoSQL/Cassandra.pm |
||||
Makefile.PL |
||||
MANIFEST |
||||
README |
||||
t/Apache-Session-NoSQL.t |
@ -0,0 +1,11 @@ |
||||
use ExtUtils::MakeMaker; |
||||
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
|
||||
# the contents of the Makefile that is written.
|
||||
WriteMakefile( |
||||
NAME => 'Apache::Session::NoSQL',
|
||||
VERSION_FROM => 'lib/Apache/Session/NoSQL.pm', # finds $VERSION
|
||||
PREREQ_PM => {}, # e.g., Module::Name => 1.1
|
||||
($] >= 5.005 ? ## Add these new keywords supported since 5.005
|
||||
(ABSTRACT_FROM => 'lib/Apache/Session/NoSQL.pm', # retrieve abstract from module
|
||||
AUTHOR => 'Thomas Chemineau <thomas.chemineau@gmail.com>') : ()),
|
||||
); |
@ -0,0 +1,15 @@ |
||||
# Before `make install' is performed this script should be runnable with |
||||
# `make test'. After `make install' it should work as `perl Apache-Session-NoSQL.t' |
||||
|
||||
######################### |
||||
|
||||
# change 'tests => 1' to 'tests => last_test_to_print'; |
||||
|
||||
use Test::More tests => 1; |
||||
BEGIN { use_ok('Apache::Session::NoSQL') }; |
||||
|
||||
######################### |
||||
|
||||
# Insert your test code below, the Test::More module is use()ed here so read |
||||
# its man page ( perldoc Test::More ) for help writing this test script. |
||||
|
Loading…
Reference in new issue