Changeset 6473
- Timestamp:
- Feb 23, 2006, 2:52:14 PM (20 years ago)
- Location:
- trunk/DataStore
- Files:
-
- 2 added
- 1 deleted
- 3 edited
-
Build.PL (modified) (1 diff)
-
MANIFEST (modified) (1 diff)
-
lib/DataStore/FileSet (added)
-
lib/DataStore/FileSet/Parser.pm (added)
-
lib/DataStore/Parser.pm (deleted)
-
t/01_load.t (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/DataStore/Build.PL
r6471 r6473 4 4 Module::Build->new( 5 5 module_name => 'DataStore', 6 dist_version_from => 'lib/DataStore/ Parser.pm',6 dist_version_from => 'lib/DataStore/FileSet/Parser.pm', 7 7 author => 'Joshua Hoblitt <jhoblitt@cpan.org>', 8 8 license => 'gpl', -
trunk/DataStore/MANIFEST
r6471 r6473 6 6 Build.PL 7 7 Makefile.PL 8 lib/DataStore/ Parser.pm8 lib/DataStore/FileSet/Parser.pm 9 9 t/00_distribution.t 10 10 t/01_load.t -
trunk/DataStore/t/01_load.t
r6471 r6473 3 3 # t/001_load.t - check module loading and create testing directory 4 4 5 use Test::More tests => 2;5 use Test::More tests => 1; 6 6 7 BEGIN { use_ok( 'DataStore:: Parser' ); }7 BEGIN { use_ok( 'DataStore::FileSet::Parser' ); } 8 8 9 my $object = DataStore::Parser->new ();10 isa_ok ($object, 'DataStore::Parser');11 12
Note:
See TracChangeset
for help on using the changeset viewer.
