Sha256: 91daa978d975bbf99e38dcdc21cc25c9ef962a20ec338ec069b095b2c52f6824

Contents?: true

Size: 1.16 KB

Versions: 9

Compression:

Stored size: 1.16 KB

Contents

require 'spec_helper'
require 'mspec/expectations/expectations'
require 'mspec/guards'
require 'mspec/helpers'
require 'mspec/matchers'

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

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

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

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

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

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
mspec-1.9.1 spec/matchers/infinity_spec.rb
mspec-1.9.0 spec/matchers/infinity_spec.rb
mspec-1.8.0 spec/matchers/infinity_spec.rb
mspec-1.7.0 spec/matchers/infinity_spec.rb
mspec-1.6.0 spec/matchers/infinity_spec.rb
mspec-1.5.21 spec/matchers/infinity_spec.rb
mspec-1.5.20 spec/matchers/infinity_spec.rb
mspec-1.5.19 spec/matchers/infinity_spec.rb
mspec-1.5.18 spec/matchers/infinity_spec.rb