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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
|
use strictures 1;
use Test::More;
use Test::Fatal;
sub run_for {
my $class = shift;
my $obj = $class->new(plus_three => 1);
is($obj->plus_three, 4, "initial value set (${class})");
$obj->plus_three(4);
is($obj->plus_three, 7, 'Value changes after set');
}
sub run_with_default_for {
my $class = shift;
my $obj = $class->new();
is($obj->plus_three, 4, "initial value set (${class})");
$obj->plus_three(4);
is($obj->plus_three, 7, 'Value changes after set');
}
{
package Foo;
use Moo;
has plus_three => (
is => 'rw',
coerce => sub { $_[0] + 3 }
);
}
run_for 'Foo';
{
package Bar;
use Sub::Quote;
use Moo;
has plus_three => (
is => 'rw',
coerce => quote_sub q{
my ($x) = @_;
$x + 3
}
);
}
run_for 'Bar';
{
package Baz;
use Sub::Quote;
use Moo;
has plus_three => (
is => 'rw',
coerce => quote_sub(
q{
my ($value) = @_;
$value + $plus
},
{ '$plus' => \3 }
)
);
}
run_for 'Baz';
{
package Biff;
use Sub::Quote;
use Moo;
has plus_three => (
is => 'rw',
coerce => quote_sub(
q{
die 'could not add three!'
},
)
);
}
like exception { Biff->new(plus_three => 1) }, qr/could not add three!/, 'Exception properly thrown';
{
package Foo2;
use Moo;
has plus_three => (
is => 'rw',
default => sub { 1 },
coerce => sub { $_[0] + 3 }
);
}
run_with_default_for 'Foo2';
{
package Bar2;
use Sub::Quote;
use Moo;
has plus_three => (
is => 'rw',
default => sub { 1 },
coerce => quote_sub q{
my ($x) = @_;
$x + 3
}
);
}
run_with_default_for 'Bar2';
{
package Baz2;
use Sub::Quote;
use Moo;
has plus_three => (
is => 'rw',
default => sub { 1 },
coerce => quote_sub(
q{
my ($value) = @_;
$value + $plus
},
{ '$plus' => \3 }
)
);
}
run_with_default_for 'Baz2';
{
package Biff2;
use Sub::Quote;
use Moo;
has plus_three => (
is => 'rw',
default => sub { 1 },
coerce => quote_sub(
q{
die 'could not add three!'
},
)
);
}
like exception { Biff2->new() }, qr/could not add three!/, 'Exception properly thrown';
{
package Foo3;
use Moo;
has plus_three => (
is => 'rw',
default => sub { 1 },
coerce => sub { $_[0] + 3 },
lazy => 1,
);
}
run_with_default_for 'Foo3';
{
package Bar3;
use Sub::Quote;
use Moo;
has plus_three => (
is => 'rw',
default => sub { 1 },
coerce => quote_sub(q{
my ($x) = @_;
$x + 3
}),
lazy => 1,
);
}
run_with_default_for 'Bar3';
done_testing;
|