[Bps-public-commit] Parse-BooleanLogic branch, master, updated. b2ebea2d7a34c7a33fa280c8ade5bf0f278a63eb
Jim Brandt
jbrandt at bestpractical.com
Wed Apr 15 17:24:32 EDT 2020
The branch, master has been updated
via b2ebea2d7a34c7a33fa280c8ade5bf0f278a63eb (commit)
from 51fe92a7f5da62c74c7f6bfa35b693e3d2faec45 (commit)
Summary of changes:
t/basics.t | 2 +-
t/custom_googlish.t | 2 +-
t/custom_ops.t | 2 +-
t/custom_parens.t | 2 +-
t/quotes.t | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
- Log -----------------------------------------------------------------
commit b2ebea2d7a34c7a33fa280c8ade5bf0f278a63eb
Author: Jim Brandt <jbrandt at bestpractical.com>
Date: Wed Apr 15 17:22:56 2020 -0400
Add dot to require in test files for modern perls
Newer perls no longer have dot (.) in @INC by default,
so add it to the require in test files so tests continue
to run correctly.
diff --git a/t/basics.t b/t/basics.t
index a507b9d..7681906 100644
--- a/t/basics.t
+++ b/t/basics.t
@@ -3,7 +3,7 @@ use strict;
use warnings;
use Test::More tests => 16;
-BEGIN { require "t/utils.pl" };
+BEGIN { require "./t/utils.pl" };
use_ok 'Parse::BooleanLogic';
diff --git a/t/custom_googlish.t b/t/custom_googlish.t
index 5767ce6..703bdf3 100644
--- a/t/custom_googlish.t
+++ b/t/custom_googlish.t
@@ -2,7 +2,7 @@ use strict;
use warnings;
use Test::More tests => 4;
-BEGIN { require "t/utils.pl" };
+BEGIN { require "./t/utils.pl" };
use_ok 'Parse::BooleanLogic';
diff --git a/t/custom_ops.t b/t/custom_ops.t
index 031c40e..9442d22 100644
--- a/t/custom_ops.t
+++ b/t/custom_ops.t
@@ -3,7 +3,7 @@ use strict;
use warnings;
use Test::More tests => 8;
-BEGIN { require "t/utils.pl" };
+BEGIN { require "./t/utils.pl" };
use_ok 'Parse::BooleanLogic';
diff --git a/t/custom_parens.t b/t/custom_parens.t
index 984784f..ffb0b56 100644
--- a/t/custom_parens.t
+++ b/t/custom_parens.t
@@ -3,7 +3,7 @@ use strict;
use warnings;
use Test::More tests => 9;
-BEGIN { require "t/utils.pl" };
+BEGIN { require "./t/utils.pl" };
use_ok 'Parse::BooleanLogic';
diff --git a/t/quotes.t b/t/quotes.t
index 07c98d7..87ec2fc 100644
--- a/t/quotes.t
+++ b/t/quotes.t
@@ -3,7 +3,7 @@ use strict;
use warnings;
use Test::More tests => 45;
-BEGIN { require "t/utils.pl" };
+BEGIN { require "./t/utils.pl" };
use_ok 'Parse::BooleanLogic';
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list