use
strict;
use
warnings;
use
App::MARC::List;
use
English;
use
Test::NoWarnings;
# Test.
my
$obj
= App::MARC::List->new;
isa_ok(
$obj
,
'App::MARC::List'
);
# Test.
eval
{
App::MARC::List->new(
'foo'
=>
'bar'
,
);
};
is(
$EVAL_ERROR
,
"Unknown parameter 'foo'.\n"
,
"Unknown parameter 'foo'."
);
clean();