X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F02-import-arg.t;h=9a27428f5b0b911e8a67e7957aff7b9c4e305402;hb=HEAD;hp=fd6f0f9835a1bae3b1ce6dd709ae454d01927825;hpb=7b03c18e358942c3388e3ba4d93319333a25b9cf;p=perl%2Fmodules%2FTest-Leaner.git diff --git a/t/02-import-arg.t b/t/02-import-arg.t index fd6f0f9..9a27428 100644 --- a/t/02-import-arg.t +++ b/t/02-import-arg.t @@ -5,117 +5,7 @@ use warnings; BEGIN { delete $ENV{PERL_TEST_LEANER_USES_TEST_MORE} } -use Test::Leaner (); -use Test::More (); +use lib 't/lib'; +use Test::Leaner::TestImport 'test_import_arg'; -sub get_subroutine { - my ($stash, $name) = @_; - - my $glob = $stash->{$name}; - return undef unless $glob; - - return *$glob{CODE}; -} - -my $this_stash = \%main::; - -my @default_exports = qw< - plan - skip - done_testing - pass - fail - ok - is - isnt - like - unlike - cmp_ok - is_deeply - diag - note - BAIL_OUT ->; - -sub check_imports { - my %imported = map { $_ => 1 } @{ $_[0] || [] }; - my @not_imported = @{ $_[1] || [] }; - for (@not_imported, grep !$imported{$_}, @default_exports) { - Test::More::ok(!exists $this_stash->{$_}, "$_ was not imported"); - } - for (grep $imported{$_}, @default_exports) { - my $code = get_subroutine($this_stash, $_); - Test::More::ok($code, "$_ was imported"); - } - delete $this_stash->{$_} for @default_exports, keys %imported, @not_imported; -} - -Test::More::plan(tests => 8 * @default_exports + 7 + 2); - -check_imports(); - -{ - local $@; - eval { - Test::Leaner->import(import => [ ]); - }; - Test::More::is($@, '', 'empty import does not croak'); - check_imports(\@default_exports); -} - -{ - local $@; - eval { - Test::Leaner->import(import => [ 'nonexistent' ]); - }; - Test::More::like($@, qr/^"nonexistent" is not exported by the Test::Leaner module/, 'import "nonexistent" croaks'); - check_imports([ ], [ 'nonexistent' ]); -} - -{ - local $@; - eval { - Test::Leaner->import(import => [ 'ok' ]); - }; - Test::More::is($@, '', 'import "ok" does not croak'); - check_imports([ 'ok' ], [ ]); -} - -{ - local $@; - eval { - Test::Leaner->import( - import => [ qw ], - import => [ qw ], - ); - }; - Test::More::is($@, '', 'import "like", "unlike", "diag" and "note" does not croak'); - check_imports([ qw ], [ ]); -} - -{ - local $@; - eval { - Test::Leaner->import(import => [ '!fail' ]); - }; - Test::More::is($@, '', 'import "!fail" does not croak'); - check_imports([ grep $_ ne 'fail', @default_exports ], [ 'fail' ]); -} - -{ - local $@; - eval { - Test::Leaner->import(import => [ 'pass' ], import => [ '!fail' ]); - }; - Test::More::is($@, '', 'import "pass", "!fail" does not croak'); - check_imports([ 'pass' ], [ ]); -} - -{ - local $@; - eval { - Test::Leaner->import(import => [ 'fail' ], import => [ '!fail' ]); - }; - Test::More::is($@, '', 'import "fail", "!fail" does not croak'); - check_imports(); -} +test_import_arg;