Sha256: fcf1947eb74b4fb130e7866ddf63048367a0bca0894a90ce0469e13e5818dbba

Contents?: true

Size: 631 Bytes

Versions: 61

Compression:

Stored size: 631 Bytes

Contents

require 'test_helper'

class TestNDC < TestCase
  include Log4r

  def test_ndc_remove_push
    NDC.remove()
    NDC.push("ndc")
    assert(Log4r::NDC.get() == "ndc", "Expected 'ndc' got '#{NDC.get()}'" )
    NDC.push("ndc")
    assert(Log4r::NDC.get() == "ndc ndc", "Expected 'ndc ndc' got '#{NDC.get()}'" )
  end

  def test_ndc_remove_push_clone_and_inherit
    NDC.remove()
    NDC.push("ndc")
    NDC.push("ndc")
    a = NDC.clone_stack()
    NDC.remove()
    assert(NDC.get() == "", "Expected '' got '#{NDC.get()}'" )
    NDC.inherit(a)
    assert(NDC.get() == "ndc ndc", "Expected 'ndc ndc' got '#{NDC.get()}'" )
  end

end

Version data entries

61 entries across 53 versions & 12 rubygems

Version Path
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/gems/log4r-1.1.10/tests/testNDC.rb
vagrant-unbundled-1.8.5.2 vendor/bundle/ruby/2.3.0/gems/log4r-1.1.10/tests/testNDC.rb
vagrant-unbundled-1.8.5.1 vendor/bundle/ruby/2.3.0/gems/log4r-1.1.10/tests/testNDC.rb
vagrant-unbundled-1.8.4.2 vendor/bundle/ruby/2.3.0/gems/log4r-1.1.10/tests/testNDC.rb
vagrant-unbundled-1.8.4.1 vendor/bundle/ruby/2.3.0/gems/log4r-1.1.10/tests/testNDC.rb
vagrant-unbundled-1.8.1.1 vendor/bundle/ruby/2.3.0/gems/log4r-1.1.10/tests/testNDC.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/log4r-1.1.10/tests/testNDC.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/log4r-1.1.10/tests/testNDC.rb
vagrant-tiktalik-0.0.3 vendor/bundle/ruby/2.0.0/gems/log4r-1.1.10/tests/testNDC.rb
mtn_log4r-1.1.12 tests/testNDC.rb
mtn_log4r-1.1.11 tests/testNDC.rb
vinted-log4r-1.1.11 tests/testNDC.rb
tnargav-1.3.3 vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/testNDC.rb
vagrant-shell-0.2.9 demo/templates/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/testNDC.rb
tnargav-1.2.3 vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/testNDC.rb
vagrant-shell-0.2.8 demo/templates/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/testNDC.rb
vagrant-shell-0.2.6 vendor/bundle/gems/log4r-1.1.10/tests/testNDC.rb
vagrant-shell-0.2.5 vendor/bundle/gems/log4r-1.1.10/tests/testNDC.rb
vagrant-actionio-0.0.9 vendor/bundle/gems/log4r-1.1.10/tests/testNDC.rb
fragrant-0.0.5 vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/tests/testNDC.rb