BEGIN {
eval "use Test::Output;";
plan skip_all => "Test::Output is required for this test" if $@;
- plan tests => 62;
+ plan tests => 63;
}
}
is(
+ prototype( UseAllOptions->can('with_caller2') ),
+ prototype( AllOptions->can('with_caller2') ),
+ 'using correct prototype on with_meta function'
+ );
+
+ is(
prototype( UseAllOptions->can('with_meta2') ),
prototype( AllOptions->can('with_meta2') ),
'using correct prototype on with_meta function'