Sha256: 07d48d326ba0237a6046bc2ece751159e074cfc1bcdae92a424c610489101924
Contents?: true
Size: 538 Bytes
Versions: 44
Compression:
Stored size: 538 Bytes
Contents
shared_examples_for 'a field' do | value, active| subject do described_class.new({ :value => value, :active => active }) end it { should respond_to :active } it { should respond_to :value } it { should respond_to :size } it { should respond_to :parse } it { should respond_to :serialize } it 'should set the value from initialize options' do expect(subject.value).to eq(value) end it 'should set active from initialize options' do expect(subject.active).to eq(active) end end
Version data entries
44 entries across 36 versions & 3 rubygems