You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-panel/t/controller_Dashboard.t

13 lines
256 B

use strict;
use warnings;
use Test::More;
use Catalyst::Test 'NGCP::Panel';
use NGCP::Panel::Controller::Dashboard;
my $response = request('/dashboard');
ok( $response->is_success || $response->is_redirect , 'Request should succeed' );
done_testing();