summaryrefslogtreecommitdiff
path: root/spec/mspec/spec/matchers/include_spec.rb
blob: f045c5e0cba151af1d8d0e46aff8db103e9de7bd (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
34
35
36
37
require 'spec_helper'
require 'mspec/expectations/expectations'
require 'mspec/matchers'

describe IncludeMatcher do
  it "matches when actual includes expected" do
    IncludeMatcher.new(2).matches?([1,2,3]).should == true
    IncludeMatcher.new("b").matches?("abc").should == true
  end

  it "does not match when actual does not include expected" do
    IncludeMatcher.new(4).matches?([1,2,3]).should == false
    IncludeMatcher.new("d").matches?("abc").should == false
  end

  it "matches when actual includes all expected" do
    IncludeMatcher.new(3, 2, 1).matches?([1,2,3]).should == true
    IncludeMatcher.new("a", "b", "c").matches?("abc").should == true
  end

  it "does not match when actual does not include all expected" do
    IncludeMatcher.new(3, 2, 4).matches?([1,2,3]).should == false
    IncludeMatcher.new("a", "b", "c", "d").matches?("abc").should == false
  end

  it "provides a useful failure message" do
    matcher = IncludeMatcher.new(5, 2)
    matcher.matches?([1,2,3])
    matcher.failure_message.should == ["Expected [1, 2, 3]", "to include 5"]
  end

  it "provides a useful negative failure message" do
    matcher = IncludeMatcher.new(1, 2, 3)
    matcher.matches?([1,2,3])
    matcher.negative_failure_message.should == ["Expected [1, 2, 3]", "not to include 3"]
  end
end