summaryrefslogtreecommitdiff
path: root/spec/mspec/spec/matchers/respond_to_spec.rb
blob: 6f1cd8d148f26094a064a03ada45cd698116d71c (plain)
1
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
29
30
31
32
33
require 'spec_helper'
require 'mspec/expectations/expectations'
require 'mspec/matchers'

RSpec.describe RespondToMatcher do
  it "matches when actual does respond_to? expected" do
    expect(RespondToMatcher.new(:to_s).matches?(Object.new)).to eq(true)
    expect(RespondToMatcher.new(:inject).matches?([])).to eq(true)
    expect(RespondToMatcher.new(:[]).matches?(1)).to eq(true)
    expect(RespondToMatcher.new(:[]=).matches?("string")).to eq(true)
  end

  it "does not match when actual does not respond_to? expected" do
    expect(RespondToMatcher.new(:to_i).matches?(Object.new)).to eq(false)
    expect(RespondToMatcher.new(:inject).matches?(1)).to eq(false)
    expect(RespondToMatcher.new(:non_existent_method).matches?([])).to eq(false)
    expect(RespondToMatcher.new(:[]=).matches?(1)).to eq(false)
  end

  it "provides a useful failure message" do
    matcher = RespondToMatcher.new(:non_existent_method)
    matcher.matches?('string')
    expect(matcher.failure_message).to eq([
      "Expected \"string\" (String)", "to respond to non_existent_method"])
  end

  it "provides a useful negative failure message" do
    matcher = RespondToMatcher.new(:to_i)
    matcher.matches?(4.0)
    expect(matcher.negative_failure_message).to eq([
      "Expected 4.0 (Float)", "not to respond to to_i"])
  end
end