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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
require 'spec_helper'
module RSpec
module Mocks
module ArgumentMatchers
describe HashIncludingMatcher do
it "describes itself properly" do
expect(HashIncludingMatcher.new(:a => 1).description).to eq "hash_including(:a=>1)"
end
describe "passing" do
it "matches the same hash" do
expect(hash_including(:a => 1)).to eq({:a => 1})
end
it "matches a hash with extra stuff" do
expect(hash_including(:a => 1)).to eq({:a => 1, :b => 2})
end
describe "when matching against other matchers" do
it "matches an int against anything()" do
expect(hash_including(:a => anything, :b => 2)).to eq({:a => 1, :b => 2})
end
it "matches a string against anything()" do
expect(hash_including(:a => anything, :b => 2)).to eq({:a => "1", :b => 2})
end
end
describe "when passed only keys or keys mixed with key/value pairs" do
it "matches if the key is present" do
expect(hash_including(:a)).to eq({:a => 1, :b => 2})
end
it "matches if more keys are present" do
expect(hash_including(:a, :b)).to eq({:a => 1, :b => 2, :c => 3})
end
it "matches a string against a given key" do
expect(hash_including(:a)).to eq({:a => "1", :b => 2})
end
it "matches if passed one key and one key/value pair" do
expect(hash_including(:a, :b => 2)).to eq({:a => 1, :b => 2})
end
it "matches if passed many keys and one key/value pair" do
expect(hash_including(:a, :b, :c => 3)).to eq({:a => 1, :b => 2, :c => 3, :d => 4})
end
it "matches if passed many keys and many key/value pairs" do
expect(hash_including(:a, :b, :c => 3, :e => 5)).to eq({:a => 1, :b => 2, :c => 3, :d => 4, :e => 5})
end
end
end
describe "failing" do
it "does not match a non-hash" do
expect(hash_including(:a => 1)).not_to eq 1
end
it "does not match a hash with a missing key" do
expect(hash_including(:a => 1)).not_to eq(:b => 2)
end
it "does not match a hash with a missing key" do
expect(hash_including(:a)).not_to eq(:b => 2)
end
it "does not match an empty hash with a given key" do
expect(hash_including(:a)).not_to eq({})
end
it "does not match a hash with a missing key when one pair is matching" do
expect(hash_including(:a, :b => 2)).not_to eq(:b => 2)
end
it "does not match a hash with an incorrect value" do
expect(hash_including(:a => 1, :b => 2)).not_to eq(:a => 1, :b => 3)
end
it "does not match when values are nil but keys are different" do
expect(hash_including(:a => nil)).not_to eq(:b => nil)
end
end
end
end
end
end
|