# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/facet/module/nesting.rb # # Extracted Wed Jan 25 11:25:39 EST 2006 # Unit Tools Reap Test Extractor # require 'facet/module/nesting.rb' require 'test/unit' class TCModule < Test::Unit::TestCase module M module N class C def n self.class.nesting end end end end def test_nesting assert_equal( [TCModule, M, M::N, M::N::C], M::N::C.new.n ) end end