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->width, undef, 'Get width (undef = default).');
# Test.
$obj = Data::Commons::Image->new(
'commons_name' => 'Michal from Czechia.jpg',
'width' => 4096,
);
is($obj->width, 4096, 'Get width (4096).');