File: //usr/local/rvm/src/ruby-3.0.2/spec/mspec/spec/matchers/be_close_spec.rb
require 'spec_helper'
require 'mspec/expectations/expectations'
require 'mspec/matchers'
# Adapted from RSpec 1.0.8
describe BeCloseMatcher do
it "matches when actual == expected" do
BeCloseMatcher.new(5.0, 0.5).matches?(5.0).should == true
end
it "matches when actual < (expected + tolerance)" do
BeCloseMatcher.new(5.0, 0.5).matches?(5.49).should == true
end
it "matches when actual > (expected - tolerance)" do
BeCloseMatcher.new(5.0, 0.5).matches?(4.51).should == true
end
it "matches when actual == (expected + tolerance)" do
BeCloseMatcher.new(5.0, 0.5).matches?(5.5).should == true
BeCloseMatcher.new(3, 2).matches?(5).should == true
end
it "matches when actual == (expected - tolerance)" do
BeCloseMatcher.new(5.0, 0.5).matches?(4.5).should == true
BeCloseMatcher.new(3, 2).matches?(1).should == true
end
it "does not match when actual < (expected - tolerance)" do
BeCloseMatcher.new(5.0, 0.5).matches?(4.49).should == false
end
it "does not match when actual > (expected + tolerance)" do
BeCloseMatcher.new(5.0, 0.5).matches?(5.51).should == false
end
it "provides a useful failure message" do
matcher = BeCloseMatcher.new(5.0, 0.5)
matcher.matches?(6.5)
matcher.failure_message.should == ["Expected 6.5", "to be within 5.0 +/- 0.5"]
end
it "provides a useful negative failure message" do
matcher = BeCloseMatcher.new(5.0, 0.5)
matcher.matches?(4.9)
matcher.negative_failure_message.should == ["Expected 4.9", "not to be within 5.0 +/- 0.5"]
end
end