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();
$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();
$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();