Add tests which should fail, but don't.
[catagits/Catalyst-Action-REST.git] / t / lib / Test / Catalyst / Log.pm
1 package Test::Catalyst::Log;
2
3 use strict;
4 use warnings;
5
6 sub new {
7     bless {}, __PACKAGE__;
8 }
9
10 sub is_debug { 0 }
11 sub debug { }
12 sub is_info { 0 }
13 sub info { }
14 sub is_warn { 0 }
15 sub warn : method { }
16 sub is_error { 0 }
17 sub error { }
18 sub is_fatal { 0 }
19 sub fatal { }
20
21 1;