diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-11-13 23:27:15 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-11-13 23:27:15 +0100 |
commit | d668c5680d983495ef165e4b464f7d3f3e11d358 (patch) | |
tree | 227f8a4ebe45820b793d2c896a8852f435988ca9 /t | |
parent | ad07d9548baf8bbbcb3973518c8653cf549ba9c9 (diff) |
Start switching to XML (thanks to M. Holzt!)
Diffstat (limited to 't')
-rw-r--r-- | t/20-vrr.t | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ use warnings; use 5.010; use File::Slurp qw(slurp); -use Test::More tests => 94; +use Test::More skip_all => 'outdated'; BEGIN { use_ok('Travel::Status::DE::VRR'); @@ -13,7 +13,7 @@ require_ok('Travel::Status::DE::VRR'); my $html = slurp('t/in/essen_bp.html'); -my $status = Travel::Status::DE::VRR->new_from_html(html => $html); +my $status = Travel::Status::DE::VRR->new_from_html(xml => $html); isa_ok($status, 'Travel::Status::DE::VRR'); can_ok($status, qw(errstr results)); |