summaryrefslogtreecommitdiff
path: root/t/20-vrr.t
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2014-01-16 14:57:00 +0100
committerDaniel Friesel <derf@finalrewind.org>2014-01-16 14:57:00 +0100
commiteccf8ca2b1d6625a2d17d12ab2f0dbc5d49fac75 (patch)
treee6335abdeb79d57b8511e9f2340615d40977554a /t/20-vrr.t
parent937a09c0845abd97a9b216d6e34b5747b95ac9f5 (diff)
Move EFA logic to ::EFA, just set URL in ::VRR
Diffstat (limited to 't/20-vrr.t')
-rw-r--r--t/20-vrr.t17
1 files changed, 9 insertions, 8 deletions
diff --git a/t/20-vrr.t b/t/20-vrr.t
index edd7f0b..54d5ad1 100644
--- a/t/20-vrr.t
+++ b/t/20-vrr.t
@@ -13,6 +13,7 @@ require_ok('Travel::Routing::DE::VRR');
sub efa_conf {
my $ret = {
+ efa_url => 'http://efa.vrr.de/vrr/XSLT_TRIP_REQUEST2',
origin => ['Essen', 'HBf'],
destination => ['Koeln', 'HBf'],
lwp_options => {},
@@ -178,40 +179,40 @@ is_efa_post(
is_efa_err(
'departure_time', '37:00',
- 'Travel::Routing::DE::VRR::Exception::Setup',
+ 'Travel::Routing::DE::EFA::Exception::Setup',
);
is_efa_err(
'departure_time', '07',
- 'Travel::Routing::DE::VRR::Exception::Setup',
+ 'Travel::Routing::DE::EFA::Exception::Setup',
);
is_efa_err(
'train_type', 'invalid',
- 'Travel::Routing::DE::VRR::Exception::Setup',
+ 'Travel::Routing::DE::EFA::Exception::Setup',
);
is_efa_err(
'walk_speed', 'invalid',
- 'Travel::Routing::DE::VRR::Exception::Setup',
+ 'Travel::Routing::DE::EFA::Exception::Setup',
);
is_efa_err(
'select_interchange_by', 'invalid',
- 'Travel::Routing::DE::VRR::Exception::Setup',
+ 'Travel::Routing::DE::EFA::Exception::Setup',
);
is_efa_err(
'exclude', [qw[sonstige invalid]],
- 'Travel::Routing::DE::VRR::Exception::Setup',
+ 'Travel::Routing::DE::EFA::Exception::Setup',
);
is_efa_err(
'date', '42.5.2003',
- 'Travel::Routing::DE::VRR::Exception::Setup',
+ 'Travel::Routing::DE::EFA::Exception::Setup',
);
is_efa_err(
'date', '7.',
- 'Travel::Routing::DE::VRR::Exception::Setup',
+ 'Travel::Routing::DE::EFA::Exception::Setup',
);