From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

use strict;
use English;
use Error::Pure::Utils qw(clean);
use Test::More 'tests' => 4;
# Test.
my $obj = Tags::HTML::Element::Select->new(
'tags' => Tags::Output::Raw->new,
);
eval {
$obj->init('bad');
};
is($EVAL_ERROR, "Select object must be a 'Data::HTML::Element::Select' instance.\n",
"Select object must be a 'Data::HTML::Element::Select' instance.");
clean();
# Test.
$obj = Tags::HTML::Element::Select->new(
'tags' => Tags::Output::Raw->new,
);
eval {
$obj->init;
};
is($EVAL_ERROR, "Select object must be a 'Data::HTML::Element::Select' instance.\n",
"Select object must be a 'Data::HTML::Element::Select' instance.");
clean();
# Test.
$obj = Tags::HTML::Element::Select->new(
'tags' => Tags::Output::Raw->new,
);
eval {
$obj->init(Test::MockObject->new);
};
is($EVAL_ERROR, "Select object must be a 'Data::HTML::Element::Select' instance.\n",
"Select object must be a 'Data::HTML::Element::Select' instance.");
clean();