Rspec match array of hashes
Use Composable Matchers
hashes = [{"foo" => "1", "bar" => "2"}, {"foo" => "2", "bar" => "2"}]
expect(hashes)
.to match([
a_hash_including('foo' => '2'),
a_hash_including('foo' => '1')
])
you can use composable matchers
http://rspec.info/blog/2014/01/new-in-rspec-3-composable-matchers/
but I prefer to define a custom matcher like this
require 'rspec/expectations'
RSpec::Matchers.define :include_hash_matching do |expected|
match do |array_of_hashes|
array_of_hashes.any? { |element| element.slice(*expected.keys) == expected }
end
end
and use it in the specs like this
describe RSpec::Matchers do
describe '#include_hash_matching' do
subject(:array_of_hashes) do
[
{
'foo' => '1',
'bar' => '2'
}, {
'foo' => '2',
'bar' => '2'
}
]
end
it { is_expected.to include_hash_matching('foo' => '1') }
it { is_expected.to include_hash_matching('foo' => '2') }
it { is_expected.to include_hash_matching('bar' => '2') }
it { is_expected.not_to include_hash_matching('bar' => '1') }
it { is_expected.to include_hash_matching('foo' => '1', 'bar' => '2') }
it { is_expected.not_to include_hash_matching('foo' => '1', 'bar' => '1') }
it 'ignores the order of the keys' do
is_expected.to include_hash_matching('bar' => '2', 'foo' => '1')
end
end
end
Finished in 0.05894 seconds
7 examples, 0 failures
You can use the any?
method. See this for the documentation.
hashes = [{"foo" => "1", "bar" => "2"}, {"foo" => "2", "bar" => "2"}]
expect(hashes.any? { |hash| hash['foo'] == '2' }).to be_true
how about?
hashes = [{"foo" => "1", "bar" => "2"}, {"foo" => "2", "bar" => "2"}]
expect(hashes).to include(include('foo' => '2'))