Skip to content

Commit

Permalink
Version 1.001010 - Integrate modules
Browse files Browse the repository at this point in the history
Integrate Test::Tester and Test::use::ok for easier downgrade path

Fixes #511
  • Loading branch information
Chad Granum committed Dec 20, 2014
1 parent 87d4206 commit ff91352
Show file tree
Hide file tree
Showing 24 changed files with 1,542 additions and 14 deletions.
7 changes: 7 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
1.001010 Fri Dec 19 20:16:00:00 PST 2015
* Fix windows test bug #491
* Integrate Test::Tester and Test::use::ok for easier downgrade from trial

1.001009 Sun Nov 2 22:31:08:00 PST 2014
* Fix bug in cmp_ok

1.001008 Wed Oct 15 20:10:22:00 PST 2014
* Updated Changes file

Expand Down
17 changes: 16 additions & 1 deletion MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,29 @@
Changes
examples/indent.pl
examples/subtest.t
lib/01-basic.t
lib/ok.pm
lib/Test/Builder.pm
lib/Test/Builder/IO/Scalar.pm
lib/Test/Builder/Module.pm
lib/Test/Builder/Tester.pm
lib/Test/Builder/Tester/Color.pm
lib/Test/More.pm
lib/Test/Simple.pm
lib/Test/Tester.pm
lib/Test/Tester/Capture.pm
lib/Test/Tester/CaptureRunner.pm
lib/Test/Tester/Delegate.pm
lib/Test/Tutorial.pod
lib/Test/use/ok.pm
Makefile.PL
MANIFEST This list of files
MANIFEST.SKIP
README
t/00compile.t
t/00test_harness_check.t
t/478-cmp_ok_hash.t
t/auto.t
t/bad_plan.t
t/bail_out.t
t/BEGIN_require_ok.t
Expand Down Expand Up @@ -51,9 +59,12 @@ t/Builder/reset.t
t/Builder/reset_outputs.t
t/Builder/try.t
t/c_flag.t
t/capture.t
t/check_tests.t
t/circular_data.t
t/cmp_ok.t
t/dependents.t
t/depth.t
t/diag.t
t/died.t
t/dont_overwrite_die_handler.t
Expand Down Expand Up @@ -99,6 +110,7 @@ t/lib/Test/Simple/sample_tests/two_fail.plx
t/lib/TieOut.pm
t/missing.t
t/More.t
t/MyTest.pm
t/new_ok.t
t/no_plan.t
t/no_tests.t
Expand All @@ -112,12 +124,13 @@ t/plan_no_plan.t
t/plan_shouldnt_import.t
t/plan_skip_all.t
t/pod-coverage.t
t/pod.t
t/require_ok.t
t/run_test.t
t/simple.t
t/Simple/load.t
t/skip.t
t/skipall.t
t/SmallTest.pm
t/subtest/args.t
t/subtest/bail_out.t
t/subtest/basic.t
Expand Down Expand Up @@ -155,3 +168,5 @@ t/utf8.t
t/versions.t
t/xt/dependents.t
TODO
xt/downstream.t
xt/downstream_dists.list
2 changes: 2 additions & 0 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,5 @@

# Don't include our dist director
^Test-Simple-

.travis.yml
5 changes: 5 additions & 0 deletions lib/01-basic.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
use strict;
use Test::More tests => 3;
use ok 'strict';
use ok 'Test::More';
use ok 'ok';
2 changes: 1 addition & 1 deletion lib/Test/Builder.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use 5.006;
use strict;
use warnings;

our $VERSION = '1.001009';
our $VERSION = '1.001010';
$VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval)

BEGIN {
Expand Down
4 changes: 2 additions & 2 deletions lib/Test/Builder/Module.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ package Test::Builder::Module;

use strict;

use Test::Builder 0.99;
use Test::Builder 1.00;

require Exporter;
our @ISA = qw(Exporter);

our $VERSION = '1.001009';
our $VERSION = '1.001010';
$VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval)


Expand Down
2 changes: 1 addition & 1 deletion lib/Test/Builder/Tester.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Test::Builder::Tester;
use strict;
our $VERSION = "1.24";

use Test::Builder 0.98;
use Test::Builder 0.99;
use Symbol;
use Carp;

Expand Down
2 changes: 1 addition & 1 deletion lib/Test/Builder/Tester/Color.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package Test::Builder::Tester::Color;

use strict;
our $VERSION = "1.24";
our $VERSION = "1.26";

require Test::Builder::Tester;

Expand Down
2 changes: 1 addition & 1 deletion lib/Test/More.pm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ sub _carp {
return warn @_, " at $file line $line\n";
}

our $VERSION = '1.001009';
our $VERSION = '1.001010';
$VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval)

use Test::Builder::Module 0.99;
Expand Down
2 changes: 1 addition & 1 deletion lib/Test/Simple.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use 5.006;

use strict;

our $VERSION = '1.001009';
our $VERSION = '1.001010';
$VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval)

use Test::Builder::Module 0.99;
Expand Down

1 comment on commit ff91352

@pghmcfc
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like 01-basic.t was merged into lib/ rather than t/ by mistake, and gets installed rather than tested as a result.

Please sign in to comment.