Skip to content

Commit

Permalink
remove unneeded uses of FindBin
Browse files Browse the repository at this point in the history
  • Loading branch information
karenetheridge committed Sep 12, 2013
1 parent 3af6df3 commit 04b999e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 10 deletions.
3 changes: 1 addition & 2 deletions t/basic.t
Expand Up @@ -3,8 +3,7 @@ use warnings;
use Test::More 0.89;
use Test::Fatal;

use FindBin;
use lib "$FindBin::Bin/lib";
use lib 't/lib';

use TestClass;
use TestClassWithMxTypes;
Expand Down
3 changes: 1 addition & 2 deletions t/caller.t
Expand Up @@ -2,8 +2,7 @@ use strict;
use warnings;
use Test::More tests => 2;

use FindBin;
use lib "$FindBin::Bin/lib";
use lib 't/lib';

use_ok("TestClass");

Expand Down
3 changes: 1 addition & 2 deletions t/errors.t
Expand Up @@ -2,8 +2,7 @@ use strict;
use warnings;
use Test::More;

use FindBin;
use lib "$FindBin::Bin/lib";
use lib 't/lib';

eval "use InvalidCase01;";
ok($@, "Got an error");
Expand Down
3 changes: 1 addition & 2 deletions t/traits.t
Expand Up @@ -2,8 +2,7 @@ use strict;
use warnings;
use Test::More tests => 12;

use FindBin;
use lib "$FindBin::Bin/lib";
use lib 't/lib';

use TestClassTrait;

Expand Down
3 changes: 1 addition & 2 deletions t/type_alias.t
Expand Up @@ -3,8 +3,7 @@ use warnings;
use Test::More;
use Test::Fatal;

use FindBin;
use lib "$FindBin::Bin/lib";
use lib 't/lib';

{
package TestClass;
Expand Down

0 comments on commit 04b999e

Please sign in to comment.