1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
#!/usr/bin/perl -w
# Test slurpy parameters
use strict;
use warnings;
use Test::More;
use Test::Exception;
{
package Stuff;
use Method::Signatures;
use Test::More;
method slurpy(@that) { return \@that }
method slurpy_required(@that!) { return \@that }
method slurpy_last($this, @that) { return $this, \@that; }
ok !eval q[func slurpy_first(@that, $this) { return $this, \@that; }];
like $@, qr{Slurpy parameter '\@that' must come at the end};
TODO: {
local $TODO = "error message incorrect inside an eval";
like $@, qr{Stuff::};
like $@, qr{slurpy_first\(\)};
}
ok !eval q[func slurpy_middle($this, @that, $other) { return $this, \@that, $other }];
like $@, qr{slurpy parameter .* must come at the end}i;
TODO: {
local $TODO = "error message incorrect inside an eval";
like $@, qr{Stuff::};
like $@, qr{slurpy_middle\(\)};
}
ok !eval q[func slurpy_positional(:@that) { return \@that; }];
like $@, qr{slurpy parameter .* cannot be named. use a reference instead}i;
TODO: {
local $TODO = "error message incorrect inside an eval";
like $@, qr{Stuff::};
like $@, qr{slurpy_positional\(\)};
}
ok !eval q[func slurpy_two($this, @that, @other) { return $this, \@that, \@other }];
like $@, qr{can only have one slurpy parameter};
}
note "Optional slurpy params accept 0 length list"; {
is_deeply [Stuff->slurpy()], [[]];
is_deeply [Stuff->slurpy_last(23)], [23, []];
}
note "Required slurpy params require an argument"; {
throws_ok { Stuff->slurpy_required() }
qr{slurpy_required\Q()\E, missing required argument \@that at \Q$0\E line @{[__LINE__ - 1]}};
}
done_testing;
|