remove reading-dialog decollation remnants from UI
[scpubgit/stemmaweb.git] / t / 01app.t
1 #!/usr/bin/env perl
2 use strict;
3 use warnings;
4 use Test::More;
5
6 use Catalyst::Test 'stemmaweb';
7
8 ok( request('/')->is_success, 'Got root HTML' );
9 ok( request('/about')->is_success, 'Got about page HTML' );
10
11 done_testing();