diff options
author | Struan Donald <struan@exo.org.uk> | 2011-05-16 13:55:56 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2011-05-16 13:55:56 +0100 |
commit | ac3eda01d488dc166596d266c82523a5f3a2670a (patch) | |
tree | 644cc85c55b5541dd10b8cd3c021cb06c063ba97 /t/app | |
parent | 5fdf34d4407f3ada00492c33e33ad79d30f74cdc (diff) |
put in a use test to stop irritating test failure
Diffstat (limited to 't/app')
-rw-r--r-- | t/app/controller/council.t | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/t/app/controller/council.t b/t/app/controller/council.t index d01b3ccd7..11898995a 100644 --- a/t/app/controller/council.t +++ b/t/app/controller/council.t @@ -4,6 +4,11 @@ use Test::More; use Catalyst::Test 'FixMyStreet::App'; -use FixMyStreet::App::Controller::Council; +use_ok( 'FixMyStreet::App::Controller::Council' ); + +TODO: { + local $TODO = 'need to write some tests for this'; + +} done_testing(); |