Skip to content

Commit

Permalink
Little bit of import tidying
Browse files Browse the repository at this point in the history
  • Loading branch information
davorg committed Apr 16, 2024
1 parent 463341f commit 1e258f1
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lib/Amazon/Sites.pm
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ no warnings 'experimental::signatures';
our $VERSION = '0.1.6';

class Amazon::Sites {
use Amazon::Site;
use Amazon::Site ();

field $include :param = [];
field $exclude :param = [];
Expand Down
2 changes: 1 addition & 1 deletion t/00-load.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use Test::More;
use Test::More import => [qw( done_testing use_ok )];

use_ok('Amazon::Sites');
use_ok('Amazon::Site');
Expand Down
2 changes: 1 addition & 1 deletion t/01-basic.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use Test::More;
use Test::More import => [qw( done_testing is is_deeply isa_ok ok )];

use Amazon::Sites;

Expand Down
2 changes: 1 addition & 1 deletion t/02-include-exclude.t
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use strict;
use warnings;

use Test::More;
use Test::More import => [qw( done_testing is_deeply ok )];
use Test::Exception;

use Amazon::Sites;
Expand Down
2 changes: 1 addition & 1 deletion t/03-associates.t
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use strict;
use warnings;

use Test::More;
use Test::More import => [qw( done_testing is )];

use Amazon::Sites;

Expand Down
2 changes: 1 addition & 1 deletion t/pod.t
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use warnings;
use strict;
use Test::More;
use Test::More import => [qw( plan )];
eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
all_pod_files_ok();
2 changes: 1 addition & 1 deletion t/pod_coverage.t
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use warnings;
use strict;
use Test::More;
use Test::More import => [qw( plan )];
eval "use Test::Pod::Coverage 1.00";
plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage" if $@;
all_pod_coverage_ok( { also_private => [qr[^(DOES|META)$]] } );

0 comments on commit 1e258f1

Please sign in to comment.