Sha256: 05741f1d1a2a329605848113a31d3938a775c83bacdcc0efac13a3342051f7de
Contents?: true
Size: 1.42 KB
Versions: 10
Compression:
Stored size: 1.42 KB
Contents
require 'spec_helper' module RSpec module Matchers describe "eq" do it_behaves_like "an RSpec matcher", :valid_value => 1, :invalid_value => 2 do let(:matcher) { eq(1) } end it "is diffable" do eq(1).should be_diffable end it "matches when actual == expected" do 1.should eq(1) end it "does not match when actual != expected" do 1.should_not eq(2) end it "compares by sending == to actual (not expected)" do called = false actual = Class.new do define_method :== do |other| called = true end end.new actual.should eq :anything # to trigger the matches? method called.should be_true end it "describes itself" do matcher = eq(1) matcher.matches?(1) matcher.description.should eq "eq 1" end it "provides message, expected and actual on #failure_message" do matcher = eq("1") matcher.matches?(1) matcher.failure_message_for_should.should eq "\nexpected: \"1\"\n got: 1\n\n(compared using ==)\n" end it "provides message, expected and actual on #negative_failure_message" do matcher = eq(1) matcher.matches?(1) matcher.failure_message_for_should_not.should eq "\nexpected: value != 1\n got: 1\n\n(compared using ==)\n" end end end end
Version data entries
10 entries across 10 versions & 5 rubygems