summaryrefslogtreecommitdiff
path: root/spec/mspec/spec/matchers/be_computed_by_spec.rb
blob: 9833e211a4a4f2f39cf4c34236c10042e7b3884d (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
38
39
40
41
42
require 'spec_helper'
require 'mspec/matchers'

describe BeComputedByMatcher do
  it "matches when all entries in the Array compute" do
    array = [ [65, "A"],
              [90, "Z"] ]
    BeComputedByMatcher.new(:chr).matches?(array).should be_true
  end

  it "matches when all entries in the Array with arguments compute" do
    array = [ [1, 2, 3],
              [2, 4, 6] ]
    BeComputedByMatcher.new(:+).matches?(array).should be_true
  end

  it "does not match when any entry in the Array does not compute" do
    array = [ [65, "A" ],
              [91, "Z" ] ]
    BeComputedByMatcher.new(:chr).matches?(array).should be_false
  end

  it "accepts an argument list to apply to each method call" do
    array = [ [65, "1000001" ],
              [90, "1011010" ] ]
    BeComputedByMatcher.new(:to_s, 2).matches?(array).should be_true
  end

  it "does not match when any entry in the Array with arguments does not compute" do
    array = [ [1, 2, 3],
              [2, 4, 7] ]
    BeComputedByMatcher.new(:+).matches?(array).should be_false
  end

  it "provides a useful failure message" do
    array = [ [65, "A" ],
              [91, "Z" ] ]
    matcher = BeComputedByMatcher.new(:chr)
    matcher.matches?(array)
    matcher.failure_message.should == ["Expected \"Z\"", "to be computed by 91.chr (computed \"[\" instead)"]
  end
end