move the test app into the examples directory
[scpubgit/Test-Harness-Selenium.git] / examples / THSelenium-Test / t / 01app.t
CommitLineData
4e138785 1#!/usr/bin/env perl
2use strict;
3use warnings;
4use Test::More;
5
6use Catalyst::Test 'THSelenium::Test';
7
8ok( request('/')->is_success, 'Request should succeed' );
9
10done_testing();