The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
use Test::More 'tests' => 3;
# Test.
my $obj = MARC::Convert::Wikidata::Object->new;
is($obj->publication_date, undef, 'Get default date of publication.');
# Test.
$obj = MARC::Convert::Wikidata::Object->new(
'publication_date' => 1993,
);
is($obj->publication_date, 1993, 'Get explicit date of publication.');