Sha256: 602089e8b50474f0f1af80b063577805c4667bce766b73840664ee48aec47af7
Contents?: true
Size: 379 Bytes
Versions: 18
Compression:
Stored size: 379 Bytes
Contents
require 'spec_helper' describe Frodo::PropertyRegistry do let(:subject) { Frodo::PropertyRegistry } it { expect(subject).to respond_to(:add) } it { expect(subject).to respond_to(:[]) } describe '#add' do before(:each) do subject.add('Edm.Guid', Frodo::Properties::Guid) end it { expect(subject['Edm.Guid']).to eq(Frodo::Properties::Guid) } end end
Version data entries
18 entries across 18 versions & 1 rubygems