Sha256: 8ce55d68632d56f2b5552c4e553b73eecf7aec42db7a1a4f434fa7950f885056
Contents?: true
Size: 400 Bytes
Versions: 23
Compression:
Stored size: 400 Bytes
Contents
require 'test/unit' require 'facets/1stclassmethod' class Test1stClassMethod < Test::Unit::TestCase class TestWith def foo ; end end def test_method! t = TestWith.new assert_equal( t.method!(:foo).__id__, t.method!(:foo).__id__ ) assert_not_equal( t.method(:foo).__id__, t.method(:foo).__id__ ) end def test_this assert_equal( this, method(:test_this) ) end end
Version data entries
23 entries across 23 versions & 1 rubygems