small maintanance

This commit is contained in:
Torsten Ruger
2018-06-16 21:01:15 +03:00
parent 7543236f4f
commit c94f6eaa78
4 changed files with 21 additions and 130 deletions

15
test/util/test_logger.rb Normal file
View File

@ -0,0 +1,15 @@
require "util/logging"
module Util
class LoggerTest < MiniTest::Test
include Util::Logging
log_level :info
def test_debug
self.log.debug "Just good to know"
end
def test_unknown
self.log.debug "Whats this"
end
end
end