Sha256: eebff432bfc4cdac3d33d639c179ac7cbe294a3bc6f1ca85948576296e099c94
Contents?: true
Size: 425 Bytes
Versions: 26
Compression:
Stored size: 425 Bytes
Contents
class Module private alias_method :remove, :remove_method end # _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # =begin test require 'test/unit' class TCModule < Test::Unit::TestCase def the_removed_method ; 'not here' ; end remove :the_removed_method def test_remove assert( ! respond_to?( :the_removed_method ) ) end end =end
Version data entries
26 entries across 26 versions & 1 rubygems