Update the test suite, the documentation and the Build-Depends.
Missed in commit 696ed5b508.
Change-Id: I0e4f33f931138fba04d411fa58d21cb428c5328f
changes/49/6649/2
parent
7c2a0e8241
commit
32a5bd2f0e
@ -1,7 +0,0 @@
|
||||
package MethodSignatures;
|
||||
use Sipwise::Base;
|
||||
use t::Types 'Place';
|
||||
|
||||
method greet(Place $who) {
|
||||
return "Hello, $who!";
|
||||
}
|
||||
@ -1,5 +0,0 @@
|
||||
package Types;
|
||||
use Sipwise::Base;
|
||||
use Moose::Util::TypeConstraints qw(subtype as where);
|
||||
|
||||
subtype 'Place', as 'Str', where { /world/ };
|
||||
@ -1,11 +0,0 @@
|
||||
use Sipwise::Base;
|
||||
use Test::More import => [qw(done_testing ok)];
|
||||
|
||||
eval {
|
||||
child {
|
||||
exec $^X, '-e1';
|
||||
};
|
||||
};
|
||||
ok !$@;
|
||||
|
||||
done_testing;
|
||||
@ -1,7 +1,7 @@
|
||||
use Sipwise::Base -skip => ['Moose'];
|
||||
use Sipwise::Base -skip => ['TryCatch'];
|
||||
use Test::More import => [qw(done_testing ok)];
|
||||
|
||||
ok(!__PACKAGE__->can($_), "Moose $_ function name is not available")
|
||||
for qw(after augment before extends has inner override super with);
|
||||
ok(!__PACKAGE__->can($_), "TryCatch $_ function name is not available")
|
||||
for qw(try catch);
|
||||
|
||||
done_testing;
|
||||
|
||||
Loading…
Reference in new issue