Drop Test::Builder dep - subtests are overkill here
[p5sagit/Sub-Exporter-Progressive.git] / t / tags.t
CommitLineData
47825557 1use strict;
2use warnings;
3
35a1e2d4 4use Test::More;
47825557 5use List::Util 'first';
b94ac53e 6use Carp;
47825557 7use lib 't/lib';
8use A::Junk ':other';
9
b94ac53e 10BEGIN {
69c9647c 11 unshift @INC, sub { croak 'Shouldn\'t load Sub::Exporter' if $_[1] eq 'Sub/Exporter.pm' };
b94ac53e 12}
13
47825557 14ok(!main->can('junk1'), 'junk1 not exported');
15ok(!main->can('junk2'), 'junk2 not exported');
16ok(main->can('junk3'), 'junk3 exported');
17ok(! $INC{'Sub/Exporter.pm'}, 'Sub::Exporter not loaded');
18
b94ac53e 19BEGIN {
69c9647c 20 package Local::Exporter;
21 use Sub::Exporter::Progressive -setup => {
22 exports => [qw/ foo bar baz /],
23 groups => {
24 default => [qw/ foo /],
25 bb => [qw/ bar baz /],
26 },
27 };
28 use constant {
29 foo => 1,
30 bar => 2,
31 baz => 3,
32 };
33 $INC{'Local/Exporter.pm'} = __FILE__;
b94ac53e 34};
35
36my $i = 0;
35a1e2d4 37sub check_tag {
69c9647c 38 my ($tag, $should, $shouldnt) = @_;
39 my $pkg = 'Local::Importer' . ++$i;
35a1e2d4 40
41 ok(eval qq{
42 package $pkg;
43 use Local::Exporter qw( $tag );
44 1;
45 }, "'$tag' tag: $pkg compiled") or diag $@;
46
47 ok( $pkg->can($_), "'$tag' tag: $pkg\->can(\"$_\")") for @$should;
48 ok(!$pkg->can($_), "'$tag' tag: $pkg\->can't(\"$_\")") for @$shouldnt;
b94ac53e 49}
50
51check_tag(':default', [qw/foo/], [qw/bar baz/]);
52check_tag('-default', [qw/foo/], [qw/bar baz/]);
53check_tag(':default bar', [qw/foo bar/], [qw/baz/]);
54check_tag('-default bar', [qw/foo bar/], [qw/baz/]);
55check_tag('bar :default', [qw/foo bar/], [qw/baz/]);
56check_tag('bar -default', [qw/foo bar/], [qw/baz/]);
57check_tag(':bb', [qw/bar baz/], [qw/foo/]);
58check_tag('-bb', [qw/bar baz/], [qw/foo/]);
59check_tag(':all', [qw/foo bar baz/], []);
60check_tag('-all', [qw/foo bar baz/], []);
61
47825557 62done_testing;
63