znmud-0.0.1/benchmark/
znmud-0.0.1/cmd/
znmud-0.0.1/cmd/emotes/
znmud-0.0.1/cmd/objects/
znmud-0.0.1/cmd/tiny/
znmud-0.0.1/doc/
znmud-0.0.1/farts/
znmud-0.0.1/lib/
znmud-0.0.1/lib/combat/
znmud-0.0.1/lib/core/bodytypes/
znmud-0.0.1/lib/engine/
znmud-0.0.1/lib/farts/
znmud-0.0.1/logs/
# Code Generated by ZenTest v. 2.3.0
#                 classname: asrt / meth =  ratio%
#                    Filter:    3 /    4 =  75.00%

unless defined? $ZENTEST and $ZENTEST
require 'test/unit'
require 'utility/log'
require 'flexmock'
end

class A
  logger 'DEBUG'
end

class B < A
  logger 'INFO'
end

class TestLog < Test::Unit::TestCase
  def setup
    a = A.new
    a.log.debug "A debug before B"
    b = B.new
    a.log.debug "A debug after B"
    b.log.debug "B debug not seen"
    b.log.info "B info test"
    a.log.error "A error test"
  end

  def test_class_instance
  end

  def test_loginit
  end
end