Sha256: eb781aeef953cded0d3d17203a2defd662437ddef8af70736c2368e30ed162f3

Contents?: true

Size: 749 Bytes

Versions: 10

Compression:

Stored size: 749 Bytes

Contents

require 'spec_helper'

describe ActiveFedora::Base do
  describe ".uri_prefix" do
    let(:path) { "foo" }

    before do
      class FooHistory < ActiveFedora::Base
        def uri_prefix
          "foo"
        end
        property :title, predicate: ::RDF::DC.title
      end
    end

    after do
      Object.send(:remove_const, :FooHistory)
    end

    subject { FooHistory.new(title: ["Root foo"]) }

    it { is_expected.to have_uri_prefix }

    it "uses the root path in the uri" do
      expect(subject.uri_prefix).to eql path
    end

    context "when the object is saved" do
      before { subject.save }

      it "should persist the path in the uri" do
        expect(subject.uri.to_s).to include(path)
      end

    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
active-fedora-9.5.0 spec/unit/pathing_spec.rb
active-fedora-9.4.3 spec/unit/pathing_spec.rb
active-fedora-9.4.2 spec/unit/pathing_spec.rb
active-fedora-9.4.1 spec/unit/pathing_spec.rb
active-fedora-9.4.0 spec/unit/pathing_spec.rb
active-fedora-9.3.0 spec/unit/pathing_spec.rb
active-fedora-9.2.1 spec/unit/pathing_spec.rb
active-fedora-9.2.0 spec/unit/pathing_spec.rb
active-fedora-9.2.0.rc2 spec/unit/pathing_spec.rb
active-fedora-9.2.0.rc1 spec/unit/pathing_spec.rb