From: Tyler Riddle <t.riddle@shadowcat.co.uk>
Date: Wed, 5 Dec 2012 21:43:38 +0000 (-0800)
Subject: remove t/logsetup.pl
X-Git-Tag: v0.003001_01~43
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=58e4620266e33c4e29c3a1d8db0b876ac91fffdc;p=scpubgit%2FObject-Remote.git

remove t/logsetup.pl
---

diff --git a/t/logsetup.pl b/t/logsetup.pl
deleted file mode 100644
index c119940..0000000
--- a/t/logsetup.pl
+++ /dev/null
@@ -1,22 +0,0 @@
-#require this file in the test to initialize the logging framework
-#so the tests can run and all log items can be executed during testing
-
-package Object::Remote::Logging::TestOutput;
-
-use base qw ( Object::Remote::Logging::Logger );
-
-#don't need to output anything
-sub _output { }
-
-package main; 
-
-use Object::Remote::Logging qw( router ); 
-#make sure to enable execution of every logging code block
-#by setting the log level as high as it can go
-router->connect(Object::Remote::Logging::TestOutput->new(
-  min_level => 'trace', max_level => 'error',
-  level_names => Object::Remote::Logging->arg_levels(),
-));
-
-1;
-