blob: cb83a4c0dc96b7b19f03744e536ac6a52081d323 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/bin/env perl
use strict;
use warnings;
use 5.020;
use utf8;
use File::Slurp qw(read_file);
use Test::More tests => 1;
use Travel::Status::DE::HAFAS;
my $xml = 'lol';
my $status = Travel::Status::DE::HAFAS->new(
service => 'DB',
station => 'Berlin Jannowitzbrücke',
xml => $xml
);
is (scalar $status->results, 0, 'no results on invalid input');
|