# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/facets/core/module/namespace.rb # # Extracted Tue Jun 20 15:12:26 EDT 2006 # Unit Tools Reap Test Extractor # require 'facets/core/module/namespace.rb' require 'test/unit' class TCModule < Test::Unit::TestCase class MockObject namespace(:hope) { def watch ; 'watch' ; end } end def test_namespace m = MockObject.new assert_equal( 'watch', m.hope.watch ) end end