Sha256: 27d95b793a8841326bb80b801dbccac9be46fb8463e1990de28d4c6d17bb0709
Contents?: true
Size: 1.61 KB
Versions: 5
Compression:
Stored size: 1.61 KB
Contents
$LOAD_PATH.unshift(File.expand_path('../../../rspec-core/lib', __FILE__)) require 'rspec/core' $LOAD_PATH.unshift(File.expand_path('../../lib', __FILE__)) require 'rspec/mocks' $LOAD_PATH.unshift(File.expand_path('../../../rspec-expectations/lib', __FILE__)) require 'rspec/expectations' module Macros def treats_method_missing_as_private(options = {:noop => true, :subject => nil}) it "should have method_missing as private" do with_ruby 1.8 do self.class.describes.private_instance_methods.should include("method_missing") end with_ruby 1.9 do self.class.describes.private_instance_methods.should include(:method_missing) end end it "should not respond_to? method_missing (because it's private)" do formatter = options[:subject] || described_class.new({ }, StringIO.new) formatter.should_not respond_to(:method_missing) end if options[:noop] it "should respond_to? all messages" do formatter = described_class.new({ }, StringIO.new) formatter.should respond_to(:just_about_anything) end it "should respond_to? anything, when given the private flag" do formatter = described_class.new({ }, StringIO.new) formatter.respond_to?(:method_missing, true).should be_true end end end end module Rspec module Matchers def with_ruby(version) yield if RUBY_VERSION =~ Regexp.compile("^#{version.to_s}") end end end Rspec.configure do |config| config.mock_with :rspec config.color_enabled = true config.extend(Macros) config.include(Rspec::Matchers) config.include(Rspec::Mocks::Methods) end
Version data entries
5 entries across 5 versions & 1 rubygems