Perl x Open Food Facts Hackathon: Paris, France - May 24-25 Learn more

use strict;
use Test::More 'tests' => 2;
# Test.
my $obj = Wikibase::Datatype::Value->new(
'value' => 'foo',
'type' => 'string',
);
my $ret = $obj->value;
is($ret, 'foo', 'Get value().');