Sha256: 1358132070d898c90e504f3545d49d91ab477a3212d886fb475b25bdf10fae74
Contents?: true
Size: 502 Bytes
Versions: 1
Compression:
Stored size: 502 Bytes
Contents
# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/facets/core/module/new.rb # # Extracted Fri Feb 16 02:00:36 EST 2007 # Project.rb Test Extraction # require 'facets/core/module/new.rb' require 'test/unit' class TestModuleNew < Test::Unit::TestCase module M attr_reader :a def initialize( a ) @a = a end end def test_01 m = M.new( 1 ) assert_equal( 1, m.a ) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
facets-1.8.49 | test/lib/facets/core/module/test_new.rb |