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.
17 lines
311 B
17 lines
311 B
#!/usr/bin/env perl
|
|
use MJB::Web::Test;
|
|
|
|
#==
|
|
# This test ensures that the subscription page works.
|
|
#
|
|
# 1. Create user and login.
|
|
# 2. Go to the subscription page
|
|
#==
|
|
|
|
my $t = Test::Mojo::MJB->new('MJB::Web');
|
|
|
|
my $blog_id = $t->create_user
|
|
->get_ok( '/subscription' )
|
|
->status_is( 200 );
|
|
|
|
done_testing;
|
|
|