Sha256: f3d99aacfb3dd35c703cf7761e2cf1c99c4c0e7e15c355d43be6d622329cf353
Contents?: true
Size: 590 Bytes
Versions: 1
Compression:
Stored size: 590 Bytes
Contents
require 'spec_helper' 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' } context 'with a seven-digit identifier' do let(:id) { 'abc123z' } it { is_expected.to eq 'ab/c1/23/z/abc123z' } end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
active_fedora-noid-1.1.2 | spec/unit/noid_spec.rb |