Sha256: ca552e36c775bea040ca30ef443fe1d39b51600623ca48a908348093aa40f6a1

Contents?: true

Size: 742 Bytes

Versions: 2

Compression:

Stored size: 742 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 "persists the path in the uri" do
        expect(subject.uri.to_s).to include(path)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
active-fedora-9.6.2 spec/unit/pathing_spec.rb
active-fedora-9.6.1 spec/unit/pathing_spec.rb