#!/usr/bin/perl -w
blib_load(
'Module::Build'
);
my
$dist
= DistGen->new;
$dist
->regen;
$dist
->chdir_in;
my
$restart
=
sub
{
delete
($::{
'MyModuleBuilder::'
});
delete
(
$INC
{
'MyModuleBuilder.pm'
});
$dist
->regen(
clean
=> 1 );
};
{
my
$mb
= Module::Build->subclass(
code
=>
join
"\n"
,
map
{s/^ {4}//;
$_
}
split
/\n/,
<<' ---',
=head1 ACTIONS
=over
=item foo
Does the foo thing.
=item bar
Does the bar thing.
=item help
Does the help thing.
You should probably not be seeing this. That is, we haven't
overridden the help action, but we're able to override just the
docs? That almost seems reasonable, but is probably wrong.
=back
=cut
sub ACTION_foo { die "fooey" }
sub ACTION_bar { die "barey" }
sub ACTION_baz { die "bazey" }
# guess we can have extra pod later
=over
=item baz
Does the baz thing.
=back
=cut
---
)->new(
module_name
=>
$dist
->name,
);
ok
$mb
;
can_ok(
$mb
,
'ACTION_foo'
);
foreach
my
$action
(
qw(foo bar baz)
) {
my
$doc
=
$mb
->get_action_docs(
$action
);
ok(
$doc
,
"got doc for '$action'"
);
like(
$doc
,
qr/^=\w+ $action\n\nDoes the $action thing\./
s,
'got the right doc'
);
}
{
ok( !
eval
{
$mb
->get_action_docs(
'batz'
); 1},
'slap'
);
like($@,
qr/No known action 'batz'/
,
'informative error'
);
}
{
my
$action
=
'help'
;
my
$doc
=
$mb
->get_action_docs(
$action
);
ok(
$doc
,
"got doc for '$action'"
);
0 and
warn
"help doc >\n$doc<\n"
;
TODO: {
local
$TODO
=
'Do we allow overrides on just docs?'
;
unlike(
$doc
,
qr/^=\w+ $action\n\nDoes the $action thing\./
s,
'got the right doc'
);
}
}
}
$restart
->();
if
(0) {
my
$mb
= Module::Build->subclass(
code
=>
join
"\n"
,
map
{s/^ {4}//;
$_
}
split
/\n/,
<<' ---',
=head1 ACTIONS
=over
=item foo
Does the foo thing.
=item bar
Does the bar thing.
=back
=head1 thbbt
=over
=item baz
Should not see this.
=back
=cut
sub ACTION_foo { die "fooey" }
sub ACTION_bar { die "barey" }
sub ACTION_baz { die "bazey" }
---
)->new(
module_name
=>
$dist
->name,
);
ok
$mb
;
can_ok(
$mb
,
'ACTION_foo'
);
foreach
my
$action
(
qw(foo bar)
) {
my
$doc
=
$mb
->get_action_docs(
$action
);
ok(
$doc
,
"got doc for '$action'"
);
like(
$doc
,
qr/^=\w+ $action\n\nDoes the $action thing\./
s,
'got the right doc'
);
}
is(
$mb
->get_action_docs(
'baz'
),
undef
,
'no jumping =head1 sections'
);
}
$restart
->();
TODO: {
local
$TODO
=
'Support capitalized Actions section'
;
my
$mb
= Module::Build->subclass(
code
=>
join
"\n"
,
map
{s/^ {4}//;
$_
}
split
/\n/,
<<' ---',
=head1 Actions
=over
=item foo
Does the foo thing.
=item bar
Does the bar thing.
=back
=cut
sub ACTION_foo { die "fooey" }
sub ACTION_bar { die "barey" }
---
)->new(
module_name
=>
$dist
->name,
);
foreach
my
$action
(
qw(foo bar)
) {
my
$doc
=
$mb
->get_action_docs(
$action
);
ok(
$doc
,
"got doc for '$action'"
);
like(
$doc
||
'undef'
,
qr/^=\w+ $action\n\nDoes the $action thing\./
s,
'got the right doc'
);
}
}
$restart
->();
{
my
$mb
= Module::Build->subclass(
code
=>
join
"\n"
,
map
{s/^ {4}//;
$_
}
split
/\n/,
<<' ---',
=head1 ACTIONS
=head2 foo
Does the foo thing.
=head2 bar
Does the bar thing.
=head3 bears
Be careful with bears.
=cut
sub ACTION_foo { die "fooey" }
sub ACTION_bar { die "barey" }
sub ACTION_baz { die "bazey" }
sub ACTION_batz { die "batzey" }
# guess we can have extra pod later
# Though, I do wonder whether we should allow them to mix...
# maybe everything should have to be head2?
=head2 baz
Does the baz thing.
=head4 What's a baz?
=head1 not this part
This is level 1, so the stuff about baz is done.
=head1 Thing
=head2 batz
This is not an action doc.
=cut
---
)->new(
module_name
=>
$dist
->name,
);
my
%also
= (
foo
=>
''
,
bar
=>
"\n=head3 bears\n\nBe careful with bears.\n"
,
baz
=>
"\n=head4 What's a baz\\?\n"
,
);
foreach
my
$action
(
qw(foo bar baz)
) {
my
$doc
=
$mb
->get_action_docs(
$action
);
ok(
$doc
,
"got doc for '$action'"
);
my
$and
=
$also
{
$action
};
like(
$doc
||
'undef'
,
qr/^=\w+ $action\n\nDoes the $action thing\.\n$and\n$/
s,
'got the right doc'
);
}
is(
$mb
->get_action_docs(
'batz'
),
undef
,
'nothing after uplevel'
);
}
$dist
->clean();