blob: 11898995ae6d8cdc14b5a3707250bf1e29be77dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
use strict;
use warnings;
use Test::More;
use Catalyst::Test 'FixMyStreet::App';
use_ok( 'FixMyStreet::App::Controller::Council' );
TODO: {
local $TODO = 'need to write some tests for this';
}
done_testing();
|