#!perl
# This file was automatically generated by Dist::Zilla::Plugin::Test::Map::Tube v0.20.
use strict; use warnings;
use utf8;
use Test::More;
my $min_tmt = 0.33;
eval "use Test::Map::Tube $min_tmt tests => 3";
plan skip_all => "Test::Map::Tube $min_tmt required" if $@;
use Sample::Map;
my $map = Sample::Map->new;
SKIP: {
ok_map($map) or skip 'no map data found', 2;
ok_map_functions($map);
open(IN, '<:encoding(UTF-8)', "t/routes.txt") or die "Can't open routes file: $!\n"; my @routes = <IN>; close(IN);
ok_map_routes($map, \@routes);
}