Project: tests we can get the channel for the latest builds

This commit is contained in:
Graham Christensen 2022-01-14 11:01:10 -05:00
parent e019028ce9
commit 9291cba89f

View file

@ -22,4 +22,9 @@ subtest "/project/PROJECT/all" => sub {
ok($response->is_success, "The page showing the project's builds returns 200.");
};
subtest "/project/PROJECT/channel/latest" => sub {
my $response = request(GET '/project/' . $project->name . '/channel/latest');
ok($response->is_success, "The page showing the project's builds returns 200.");
};
done_testing;