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