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