The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

$Mason::t::Defer::VERSION = '2.23';
use strict;
sub test_defer : Test(1) {
my $self = shift;
$self->{interp} = $self->create_interp( plugins => [ '@Default', 'Defer' ] );
$self->test_comp(
src => <<'EOF',
<%class>
my ($title, $subtitle);
</%class>
Title is <% $m->defer(sub { $title }) %>
% $.Defer {{
Subtitle is <% $subtitle %>
% }}
<%perl>
$title = 'foo';
$subtitle = 'bar';
</%perl>
EOF
expect => <<'EOF',
Title is foo
Subtitle is bar
EOF
);
}
1;