summaryrefslogtreecommitdiff
path: root/spec/mspec/spec/matchers/infinity_spec.rb
blob: 78c419452674e6a374137f4a412f88ddbbb9200b (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
require 'spec_helper'
require 'mspec/expectations/expectations'
require 'mspec/guards'
require 'mspec/helpers'
require 'mspec/matchers'

RSpec.describe InfinityMatcher do
  it "matches when actual is infinite and has the correct sign" do
    expect(InfinityMatcher.new(1).matches?(infinity_value)).to eq(true)
    expect(InfinityMatcher.new(-1).matches?(-infinity_value)).to eq(true)
  end

  it "does not match when actual is not infinite" do
    expect(InfinityMatcher.new(1).matches?(1.0)).to eq(false)
    expect(InfinityMatcher.new(-1).matches?(-1.0)).to eq(false)
  end

  it "does not match when actual is infinite but has the incorrect sign" do
    expect(InfinityMatcher.new(1).matches?(-infinity_value)).to eq(false)
    expect(InfinityMatcher.new(-1).matches?(infinity_value)).to eq(false)
  end

  it "provides a useful failure message" do
    matcher = InfinityMatcher.new(-1)
    matcher.matches?(0)
    expect(matcher.failure_message).to eq(["Expected 0", "to be -Infinity"])
  end

  it "provides a useful negative failure message" do
    matcher = InfinityMatcher.new(1)
    matcher.matches?(infinity_value)
    expect(matcher.negative_failure_message).to eq(["Expected Infinity", "not to be Infinity"])
  end
end