have_attributes
マッチャー
have_attributes
マッチャーを使用して、オブジェクトの属性が期待する属性と一致することを指定します。
(Person = Struct.new(:name, :age)
person = Person.new("Jim", 32)
expect(person).to have_attributes(:name => "Jim", :age => 32)
expect(person).to have_attributes(:name => a_string_starting_with("J"), :age => (a_value > 30) )
実際のオブジェクトが期待する属性のいずれかに応答しない場合、マッチャーは失敗します。
expect(person).to have_attributes(:name => "Jim", :color => 'red')
基本的な使用法
次の内容で "basic_have_attributes_matcher_spec.rb" という名前のファイルを作成します。
Person = Struct.new(:name, :age)
RSpec.describe Person.new("Jim", 32) do
it { is_expected.to have_attributes(:name => "Jim") }
it { is_expected.to have_attributes(:name => a_string_starting_with("J") ) }
it { is_expected.to have_attributes(:age => 32) }
it { is_expected.to have_attributes(:age => (a_value > 30) ) }
it { is_expected.to have_attributes(:name => "Jim", :age => 32) }
it { is_expected.to have_attributes(:name => a_string_starting_with("J"), :age => (a_value > 30) ) }
it { is_expected.not_to have_attributes(:name => "Bob") }
it { is_expected.not_to have_attributes(:age => 10) }
it { is_expected.not_to have_attributes(:age => (a_value < 30) ) }
# deliberate failures
it { is_expected.to have_attributes(:name => "Bob") }
it { is_expected.to have_attributes(:age => 10) }
# fails if any of the attributes don't match
it { is_expected.to have_attributes(:name => "Bob", :age => 32) }
it { is_expected.to have_attributes(:name => "Jim", :age => 10) }
it { is_expected.to have_attributes(:name => "Bob", :age => 10) }
end
次に、rspec basic_have_attributes_matcher_spec.rb
を実行します。
その後、出力に "14 examples, 5 failures" が含まれていることを確認します。