Module: Macros

Defined in:
lib/vendor/plugins/rspec/spec/support/macros.rb

Instance Method Summary collapse

Instance Method Details

#treats_method_missing_as_private(options = {:noop => true, :subject => nil}) ⇒ Object



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/vendor/plugins/rspec/spec/support/macros.rb', line 2

def treats_method_missing_as_private(options = {:noop => true, :subject => nil})
  it "should have method_missing as private" do
    with_ruby 1.8 do
      described_class.private_instance_methods.should include("method_missing")
    end
    with_ruby 1.9 do
      described_class.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