aboutsummaryrefslogtreecommitdiffstats
path: root/spec/matchers/be_like.rb
blob: 4ff5bc532fcfdc1158c1bc3cf80f29849e1c7ddc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module BeLikeMatcher
  class BeLike
    def initialize(expected)
      @expected = expected
    end
    
    def matches?(actual)
      @actual = actual
      @expected.gsub(/\s+/, ' ').strip == @actual.gsub(/\s+/, ' ').strip
    end
    
    def failure_message
      "expected\n#{@actual}\nto be like\n#{@expected}"
    end
    
    def negative_failure_message
      "expected\n#{@actual}\nto be unlike\n#{@expected}"
    end
  end
  
  def be_like(expected)
    BeLike.new(expected)
  end
end