Sha256: 9162b656eb22b32dc6f97e067586b16aec31010f7f537dd75e0e99aecbc840eb

Contents?: true

Size: 483 Bytes

Versions: 2

Compression:

Stored size: 483 Bytes

Contents

require 'spec_helper'
require 'active_fedora/noid'

describe ActiveFedora::Noid do
  describe '#configure' do
    it { is_expected.to respond_to(:configure) }
  end

  describe '#config' do
    it 'returns a config object' do
      expect(subject.config).to be_instance_of ActiveFedora::Noid::Config
    end
  end

  describe '#treeify' do
    subject { ActiveFedora::Noid.treeify(id) }
    let(:id) { 'abc123def45' }
    it { is_expected.to eq 'ab/c1/23/de/abc123def45' }
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
active_fedora-noid-0.1.0 spec/unit/noid_spec.rb
active_fedora-noid-0.0.1 spec/unit/noid_spec.rb