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

use strict;
use Test::More 'tests' => 3;
# Test.
my $obj = Data::Commons::Image->new(
'commons_name' => 'Michal from Czechia.jpg',
);
is($obj->author, undef, 'Get author name (undef = default).');
# Test.
$obj = Data::Commons::Image->new(
'author' => 'Zuzana Zonova',
'commons_name' => 'Michal from Czechia.jpg',
);
is($obj->author, 'Zuzana Zonova', 'Get author name.');