Changeset 377
- Timestamp:
- 06/19/08 16:17:22 (2 months ago)
- Files:
-
- trunk/src/ingy/JS-Test-Simple/HowToCPAN (added)
- trunk/src/ingy/JS-Test-Simple/MANIFEST (modified) (3 diffs)
- trunk/src/ingy/JS-Test-Simple/MANIFEST.SKIP (modified) (1 diff)
- trunk/src/ingy/JS-Test-Simple/Makefile.PL (modified) (1 diff)
- trunk/src/ingy/JS-Test-Simple/lib/JS (added)
- trunk/src/ingy/JS-Test-Simple/lib/Test/Simple.pm (added)
- trunk/src/ingy/JS-Test-Simple/t/test.t (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/ingy/JS-Test-Simple/MANIFEST
r375 r377 1 1 Changes 2 doc/html/Test/Builder.html3 doc/html/Test/Harness.html4 doc/html/Test/Harness/Browser.html5 doc/html/Test/Harness/Director.html6 doc/html/Test/More.html7 doc/html/Test/Simple.html8 2 doc/pod/Test/Builder.pod 9 3 doc/pod/Test/Harness.pod … … 12 6 doc/pod/Test/More.pod 13 7 doc/pod/Test/Simple.pod 14 doc/text/Test/Builder.txt 15 doc/text/Test/Harness.txt 16 doc/text/Test/Harness/Browser.txt 17 doc/text/Test/Harness/Director.txt 18 doc/text/Test/More.txt 19 doc/text/Test/Simple.txt 8 inc/Module/Install.pm 9 inc/Module/Install/Base.pm 10 inc/Module/Install/Can.pm 11 inc/Module/Install/Fetch.pm 12 inc/Module/Install/Makefile.pm 13 inc/Module/Install/Metadata.pm 14 inc/Module/Install/Win32.pm 15 inc/Module/Install/WriteAll.pm 20 16 lib/Test/Builder.js 21 17 lib/Test/Harness.js … … 24 20 lib/Test/More.js 25 21 lib/Test/Simple.js 22 Makefile.PL 26 23 MANIFEST This list of files 27 24 META.json 25 META.yml 28 26 README 27 t/test.t 29 28 tests/async.js 30 29 tests/bad_plan.js trunk/src/ingy/JS-Test-Simple/MANIFEST.SKIP
r375 r377 7 7 ^Test\.?Simple 8 8 \.svn 9 ^__Build 10 ^ToDo 11 ^Makefile$ trunk/src/ingy/JS-Test-Simple/Makefile.PL
r375 r377 1 1 use inc::Module::Install; 2 2 3 name 'JS-Test-Simple'; 4 version '0.23'; 5 # license_ 'lgpl'; 6 all_from 'doc/pod/Test/Simple.pod'; 3 all_from 'lib/JS/Test/Simple.pm'; 7 4 8 5 requires 'JS'; trunk/src/ingy/JS-Test-Simple/t/test.t
r376 r377 1 1 use Test::More tests => 1; 2 2 3 pass "Dummy Perl test"; 3 use JS::Test::Simple; 4 5 is $JS::Test::Simple::VERSION, '0.23', 6 'Perl Module loads';
