X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Funit_core_log.t;fp=t%2Funit_core_log.t;h=0000000000000000000000000000000000000000;hb=5d50f369bffa3625ca983b72fc8bc013c8a1e802;hp=26a52d321407149d1cd2eb66b313c45f4dfea0dd;hpb=a2aac3b8867dea286d03eba07a6fbe2e237cf1ae;p=catagits%2FCatalyst-Runtime.git diff --git a/t/unit_core_log.t b/t/unit_core_log.t deleted file mode 100644 index 26a52d3..0000000 --- a/t/unit_core_log.t +++ /dev/null @@ -1,72 +0,0 @@ -use strict; -use warnings; - -use Test::More tests => 23; - -my $LOG; - -BEGIN { - chdir 't' if -d 't'; - use lib '../lib'; - $LOG = 'Catalyst::Log'; - use_ok $LOG or die; -} -my @MESSAGES; -{ - no warnings 'redefine'; - *Catalyst::Log::_send_to_log = sub { - my $self = shift; - push @MESSAGES, @_; - }; -} - -can_ok $LOG, 'new'; -ok my $log = $LOG->new, '... and creating a new log object should succeed'; -isa_ok $log, $LOG, '... and the object it returns'; - -can_ok $log, 'is_info'; -ok $log->is_info, '... and the default behavior is to allow info messages'; - -can_ok $log, 'info'; -ok $log->info('hello there!'), - '... passing it an info message should succeed'; - -can_ok $log, "_flush"; -$log->_flush; -ok @MESSAGES, '... and flushing the log should succeed'; -is scalar @MESSAGES, 1, '... with one log message'; -like $MESSAGES[0], qr/^\[info\] hello there!$/, - '... which should match the format we expect'; - -{ - - package Catalyst::Log::Subclass; - use base qw/Catalyst::Log/; - - sub _send_to_log { - my $self = shift; - push @MESSAGES, '---'; - push @MESSAGES, @_; - } -} - -my $SUBCLASS = 'Catalyst::Log::Subclass'; -can_ok $SUBCLASS, 'new'; -ok $log = Catalyst::Log::Subclass->new, - '... and the log subclass constructor shoudl return a new object'; -isa_ok $log, $SUBCLASS, '... and the object it returns'; -isa_ok $log, $LOG, '... and it also'; - -can_ok $log, 'info'; -ok $log->info('hi there!'), - '... passing it an info message should succeed'; - -can_ok $log, "_flush"; -@MESSAGES = (); # clear the message log -$log->_flush; -ok @MESSAGES, '... and flushing the log should succeed'; -is scalar @MESSAGES, 2, '... with two log messages'; -is $MESSAGES[0], '---', '... with the first one being our new data'; -like $MESSAGES[1], qr/^\[info\] hi there!$/, - '... which should match the format we expect'; -