Sha256: 0516a83d54a24d0822d1d95f3089e4f82d923c068ac8ee66022b98d55002368b

Contents?: true

Size: 1.14 KB

Versions: 6

Compression:

Stored size: 1.14 KB

Contents

require File.expand_path('setup', File.dirname(__FILE__))

module TestLogging

  class TestConsolidate < Test::Unit::TestCase
    include LoggingTestCase

    def test_root
      Logging.consolidate :root
      root = Logging.logger.root

      assert_same root, Logging.logger['Foo']
      assert_same root, Logging.logger['Foo::Bar']
      assert_same root, Logging.logger[Array]
    end

    def test_foo
      Logging.consolidate 'Foo'
      logger = Logging.logger['Foo::Bar::Baz']

      assert_same Logging.logger['Foo'], logger
      assert_not_same Logging.logger.root, logger
    end

    def test_many
      Logging.consolidate 'Foo', 'root', 'Foo::Bar::Baz'

      root = Logging.logger.root
      foo = Logging.logger['Foo']
      fbb = Logging.logger['Foo::Bar::Baz']

      assert_not_same root, foo
      assert_not_same root, fbb
      assert_not_same foo, fbb

      assert_same root, Logging.logger[Hash]
      assert_same root, Logging.logger['ActiveRecord::Base']
      assert_same foo, Logging.logger['Foo::Bar']
      assert_same fbb, Logging.logger['Foo::Bar::Baz::Buz']
    end

  end  # class TestConsolidate
end  # module TestLogging

# EOF

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
logging-1.6.2 test/test_consolidate.rb
logging-1.6.1 test/test_consolidate.rb
logging-1.6.0 test/test_consolidate.rb
logging-1.5.2 test/test_consolidate.rb
logging-1.5.1 test/test_consolidate.rb
logging-1.5.0 test/test_consolidate.rb