Sha256: aa482338c6c44856785ecbe118c51812aaa9f73695c5f7b2e5902d043630a39c
Contents?: true
Size: 446 Bytes
Versions: 21
Compression:
Stored size: 446 Bytes
Contents
require File.expand_path('../fixtures/classes', __FILE__) describe 'Method lookup for instances of Module' do it 'takes own method, not the one defined on the Class' do Module.new.test_method_overlapping_module_method.should == :module end end describe 'Method lookup for instances of Class' do it 'takes own method, not the one defined on the Module' do Class.new.test_method_overlapping_module_method.should == :class end end
Version data entries
21 entries across 21 versions & 1 rubygems