Sha256: dfef16943263b2cd791d7c5d8cc23ace780a0ccc3d65a72d3723efe4abf3b40d

Contents?: true

Size: 1.02 KB

Versions: 87

Compression:

Stored size: 1.02 KB

Contents

# RSpec matcher to spec delegations.
RSpec::Matchers.define :belong_to_associated_active_fedora_object do |association_name|
  match do |subject|
    @association_name = association_name
    if @association_name.nil? || @expected_object.nil?
      raise(
        ArgumentError,
        "expect(subject).to belong_to_associated_active_fedora_object(<association_name>).with_object(<object>)"
      )
    end

    @subject = subject.class.find(subject.id)
    @actual_object = @subject.send(@association_name)

    @expected_object == @actual_object
  end

  chain(:with_object) { |object| @expected_object = object }

  description do
    "#{@subject.class} ID=#{@subject.id} association: #{@association_name.inspect} matches ActiveFedora"
  end

  failure_message do |_text|
    "expected #{@subject.class} ID=#{@subject.id} association: #{@association_name.inspect} to match"
  end

  failure_message_when_negated do |_text|
    "expected #{@subject.class} ID=#{@subject.id} association: #{@association_name.inspect} to NOT match"
  end
end

Version data entries

87 entries across 87 versions & 1 rubygems

Version Path
active-fedora-15.0.1 lib/active_fedora/rspec_matchers/belong_to_associated_active_fedora_object_matcher.rb
active-fedora-15.0.0 lib/active_fedora/rspec_matchers/belong_to_associated_active_fedora_object_matcher.rb
active-fedora-14.0.1 lib/active_fedora/rspec_matchers/belong_to_associated_active_fedora_object_matcher.rb
active-fedora-14.0.0 lib/active_fedora/rspec_matchers/belong_to_associated_active_fedora_object_matcher.rb
active-fedora-13.3.0 lib/active_fedora/rspec_matchers/belong_to_associated_active_fedora_object_matcher.rb
active-fedora-12.2.4 lib/active_fedora/rspec_matchers/belong_to_associated_active_fedora_object_matcher.rb
active-fedora-13.2.7 lib/active_fedora/rspec_matchers/belong_to_associated_active_fedora_object_matcher.rb
active-fedora-13.2.5 lib/active_fedora/rspec_matchers/belong_to_associated_active_fedora_object_matcher.rb
active-fedora-13.2.4 lib/active_fedora/rspec_matchers/belong_to_associated_active_fedora_object_matcher.rb
active-fedora-12.2.3 lib/active_fedora/rspec_matchers/belong_to_associated_active_fedora_object_matcher.rb
active-fedora-13.2.3 lib/active_fedora/rspec_matchers/belong_to_associated_active_fedora_object_matcher.rb
active-fedora-13.2.2 lib/active_fedora/rspec_matchers/belong_to_associated_active_fedora_object_matcher.rb
active-fedora-13.2.0 lib/active_fedora/rspec_matchers/belong_to_associated_active_fedora_object_matcher.rb
active-fedora-13.1.3 lib/active_fedora/rspec_matchers/belong_to_associated_active_fedora_object_matcher.rb
active-fedora-11.5.6 lib/active_fedora/rspec_matchers/belong_to_associated_active_fedora_object_matcher.rb
active-fedora-12.2.2 lib/active_fedora/rspec_matchers/belong_to_associated_active_fedora_object_matcher.rb
active-fedora-11.2.1 lib/active_fedora/rspec_matchers/belong_to_associated_active_fedora_object_matcher.rb
active-fedora-12.2.1 lib/active_fedora/rspec_matchers/belong_to_associated_active_fedora_object_matcher.rb
active-fedora-12.0.3 lib/active_fedora/rspec_matchers/belong_to_associated_active_fedora_object_matcher.rb
active-fedora-11.5.5 lib/active_fedora/rspec_matchers/belong_to_associated_active_fedora_object_matcher.rb