diff options
author | Daniel Friesel <derf@finalrewind.org> | 2013-12-20 11:19:24 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2013-12-20 11:19:24 +0100 |
commit | d64f9834b068d85293d7d42277d99c67163cb176 (patch) | |
tree | 4b3e42ee45851350de36f51ab4fc3ee10f15a555 /t | |
parent | e976f7f8fb11ff20486645c198f7e4d7eafb653b (diff) |
Move EFA logic to ::EFA, just set URL in ::VRR
Diffstat (limited to 't')
-rw-r--r-- | t/20-vrr.t | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -17,13 +17,13 @@ my $xml = slurp('t/in/essen_hb.xml'); my $status = Travel::Status::DE::VRR->new_from_xml(xml => $xml); -isa_ok($status, 'Travel::Status::DE::VRR'); +isa_ok($status, 'Travel::Status::DE::EFA'); can_ok($status, qw(errstr results)); my @results = $status->results; for my $result (@results) { - isa_ok($result, 'Travel::Status::DE::VRR::Result'); + isa_ok($result, 'Travel::Status::DE::EFA::Result'); can_ok($result, qw(date destination info line time type platform)); } |