From: Emmanuel Rodriguez Date: Tue, 5 May 2009 18:42:47 +0000 (+0200) Subject: Test the id of the map source X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a525a01149fe2d8ae8c912d888b52b94fe5ac19;p=libchamplain Test the id of the map source --- diff --git a/bindings/perl/Champlain/t/ChamplainMapSourceFactory.t b/bindings/perl/Champlain/t/ChamplainMapSourceFactory.t index ba26e99..5f285a7 100644 --- a/bindings/perl/Champlain/t/ChamplainMapSourceFactory.t +++ b/bindings/perl/Champlain/t/ChamplainMapSourceFactory.t @@ -3,7 +3,7 @@ use strict; use warnings; -use Clutter::TestHelper tests => 110; +use Clutter::TestHelper tests => 22; use Champlain ':coords'; @@ -68,6 +68,6 @@ sub generic_create { my ($factory, $id, $name) = @_; my $map = $factory->create($id); isa_ok($map, 'Champlain::MapSource'); -# is($map->get_id, $id); + is($map->get_id, $id); is($map->get_name, $name); }