Changeset 377

Show
Ignore:
Timestamp:
06/19/08 16:17:22 (2 months ago)
Author:
ingy
Message:
Almost 0.23
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/ingy/JS-Test-Simple/MANIFEST

    r375 r377  
    11Changes 
    2 doc/html/Test/Builder.html 
    3 doc/html/Test/Harness.html 
    4 doc/html/Test/Harness/Browser.html 
    5 doc/html/Test/Harness/Director.html 
    6 doc/html/Test/More.html 
    7 doc/html/Test/Simple.html 
    82doc/pod/Test/Builder.pod 
    93doc/pod/Test/Harness.pod 
     
    126doc/pod/Test/More.pod 
    137doc/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 
     8inc/Module/Install.pm 
     9inc/Module/Install/Base.pm 
     10inc/Module/Install/Can.pm 
     11inc/Module/Install/Fetch.pm 
     12inc/Module/Install/Makefile.pm 
     13inc/Module/Install/Metadata.pm 
     14inc/Module/Install/Win32.pm 
     15inc/Module/Install/WriteAll.pm 
    2016lib/Test/Builder.js 
    2117lib/Test/Harness.js 
     
    2420lib/Test/More.js 
    2521lib/Test/Simple.js 
     22Makefile.PL 
    2623MANIFEST                        This list of files 
    2724META.json 
     25META.yml 
    2826README 
     27t/test.t 
    2928tests/async.js 
    3029tests/bad_plan.js 
  • trunk/src/ingy/JS-Test-Simple/MANIFEST.SKIP

    r375 r377  
    77^Test\.?Simple 
    88\.svn 
     9^__Build 
     10^ToDo 
     11^Makefile$ 
  • trunk/src/ingy/JS-Test-Simple/Makefile.PL

    r375 r377  
    11use inc::Module::Install; 
    22 
    3 name     'JS-Test-Simple'; 
    4 version  '0.23'; 
    5 # license_  'lgpl'; 
    6 all_from 'doc/pod/Test/Simple.pod'; 
     3all_from 'lib/JS/Test/Simple.pm'; 
    74 
    85requires 'JS'; 
  • trunk/src/ingy/JS-Test-Simple/t/test.t

    r376 r377  
    11use Test::More tests => 1; 
    22 
    3 pass "Dummy Perl test"; 
     3use JS::Test::Simple; 
     4 
     5is $JS::Test::Simple::VERSION, '0.23', 
     6    'Perl Module loads';