Sha256: 3302c4f8602f5ded5b6b5d2aa1fdb5c8bda6497e9eb57756c5fe3b534c5fb49e
Contents?: true
Size: 882 Bytes
Versions: 1
Compression:
Stored size: 882 Bytes
Contents
# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/facet/methodprobe.rb # # Extracted Wed Jan 25 10:52:51 EST 2006 # Unit Tools Reap Test Extractor # require 'facet/methodprobe.rb' require 'test/unit' # " I am a Duck Hunter ! " class TC_MethodProbe < Test::Unit::TestCase # fixture def amethod(x) x + 1 end def test_signiture_default assert_nothing_raised { method(:amethod).signature } end def test_signiture_with_class assert_nothing_raised { method(:amethod).signature(:class) } end def test_signiture_pp assert_nothing_raised { method(:amethod).signature(:pp) } end def test_signiture_all assert_nothing_raised { method(:amethod).signature(:complete) } end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
facets-1.0.3 | packages/more/test/lib/facet/test_methodprobe.rb |