]> err.no Git - libchamplain/commitdiff
Fix some expected map names
authorEmmanuel Rodriguez <emmanuel.rodriguez@gmail.com>
Tue, 5 May 2009 18:15:59 +0000 (20:15 +0200)
committerPierre-Luc Beaudoin <pierre-luc@pierlux.com>
Wed, 6 May 2009 03:16:03 +0000 (23:16 -0400)
bindings/perl/Champlain/t/ChamplainMapSource.t

index fb73ef2a9663de128898b5323b1e5dffb1da21d5..6db2aabfdd551e1da97882920877191be6b18241 100644 (file)
@@ -16,7 +16,7 @@ sub tests {
        test_osm_cyclemap();
        test_osm_osmarender();
        test_oam();
-       test_mff();
+       test_mff_relief();
        return 0;
 }
 
@@ -82,7 +82,7 @@ sub test_oam {
        isa_ok($map, 'Champlain::MapSource');
        
        # Map identification
-       is($map->get_name, 'OpenArialMap', "$label name");
+       is($map->get_name, 'OpenAerialMap', "$label name");
        is($map->get_min_zoom_level, 0, "$label min zoom");
        is($map->get_max_zoom_level, 17, "$label max zoom");
        is($map->get_tile_size, 256, "$label tile size");
@@ -94,13 +94,13 @@ sub test_oam {
 
 
 # Maps for Free
-sub test_mff {
+sub test_mff_relief {
        my $label = "Maps for Free";
-       my $map = Champlain::MapSource->new_mff_relief();
+       my $map = get_mff_relief();
        isa_ok($map, 'Champlain::MapSource');
        
        # Map identification
-       is($map->get_name, 'MapsForFree Relief', "$label name");
+       is($map->get_name, 'Maps for Free Relief', "$label name");
        is($map->get_min_zoom_level, 0, "$label min zoom");
        is($map->get_max_zoom_level, 11, "$label max zoom");
        is($map->get_tile_size, 256, "$label tile size");
@@ -242,7 +242,7 @@ sub get_oam {
 }
 
 
-sub get_mff {
+sub get_mff_relief {
        my $factory = Champlain::MapSourceFactory->get_default();
        return $factory->create(Champlain::MapSourceFactory->MFF_RELIEF);
 }