Sha256: 64621fb5e483d21922d691ae3e92b64e61ec99309a0d6e8f7912ef5be0cefd47
Contents?: true
Size: 1.47 KB
Versions: 33
Compression:
Stored size: 1.47 KB
Contents
require "spec_helper" require 'ostruct' require "active_fedora/rspec_matchers/belong_to_associated_active_fedora_object_matcher" describe RSpec::Matchers, "belong_to_associated_active_fedora_object_matcher" do subject { OpenStruct.new(:id => id )} let(:id) { 123 } let(:object1) { Object.new } let(:object2) { Object.new } let(:association) { :association } it 'should match when association is properly stored in fedora' do expect(subject.class).to receive(:find).with(id).and_return(subject) expect(subject).to receive(association).and_return(object1) expect(subject).to belong_to_associated_active_fedora_object(association).with_object(object1) end it 'should not match when association is different' do expect(subject.class).to receive(:find).with(id).and_return(subject) expect(subject).to receive(association).and_return(object1) expect { expect(subject).to belong_to_associated_active_fedora_object(association).with_object(object2) }.to ( raise_error( RSpec::Expectations::ExpectationNotMetError, /expected #{subject.class} ID=#{id} association: #{association.inspect}/ ) ) end it 'should require :with_object option' do expect { expect(subject).to belong_to_associated_active_fedora_object(association) }.to( raise_error( ArgumentError, "expect(subject).to belong_to_associated_active_fedora_object(<association_name>).with_object(<object>)" ) ) end end
Version data entries
33 entries across 33 versions & 1 rubygems