use
strict;
use
warnings;
use
Test::NoWarnings;
# Test.
my
$obj
= MARC::Convert::Wikidata::Object->new;
is(
$obj
->cover,
undef
,
'Get default book cover.'
);
# Test.
$obj
= MARC::Convert::Wikidata::Object->new(
'cover'
=>
'hardback'
,
);
is(
$obj
->cover,
'hardback'
,
'Get book cover.'
);