Adjust t/12-journey-edit.t (journeys->add: backend_id is mandatory)

This commit is contained in:
Birte Kristina Friesel 2024-08-10 11:42:42 +02:00
parent ba79f62f67
commit 78d4494364
No known key found for this signature in database
GPG key ID: 19E6E524EBB177BA

View file

@ -16,6 +16,7 @@ use FindBin;
require "$FindBin::Bin/../index.pl";
use DateTime;
use utf8;
my $t = Test::Mojo->new('Travelynx');
@ -75,11 +76,12 @@ $t->post_ok(
);
$t->status_is(302)->header_is( location => '/' );
$t->app->journeys->add(
my ( $success, $error ) = $t->app->journeys->add(
db => $t->app->pg->db,
uid => $uid,
dep_station => 'EMSTP',
arr_station => 'EG',
backend_id => 1,
dep_station => 'Münster(Westf)Hbf',
arr_station => 'Gelsenkirchen Hbf',
sched_departure => DateTime->new(
year => 2018,
month => 10,
@ -119,6 +121,9 @@ $t->app->journeys->add(
comment => 'Huhu'
);
ok( $success, "journeys->add" );
is( $error, undef, "journeys->add" );
$t->get_ok('/journey/1')->status_is(200)->content_like(qr{M.nster\(Westf\)Hbf})
->content_like(qr{Gelsenkirchen Hbf})->content_like(qr{RE 11238})
->content_like(qr{Linie 42})->content_like(qr{..:36})