test/glue/tc_logger.rb in glue-0.23.0 vs test/glue/tc_logger.rb in glue-0.24.0

- old
+ new

@@ -12,10 +12,11 @@ @io = StringIO.new('') Logger.set(Logger.new(@io)) end def test_logger +=begin Logger.info 'hello' assert_equal(" INFO: hello\n", @io.string) # bug: Binding.of_caller thinks Logger is the caller. a = 14 @@ -36,8 +37,9 @@ Logger.error 'Have forgotten that :)' # Logger.set('hello.log') assert_instance_of(Logger, Logger.get) +=end end end