Sha256: e71a624bf39bb14c6111b79dcc568311092ccc89ad12043fc488042339db0176
Contents?: true
Size: 671 Bytes
Versions: 19
Compression:
Stored size: 671 Bytes
Contents
require 'spec_helper' module Finitio describe Attribute, "initialize" do context 'when implicitely required' do subject{ Attribute.new(:red, intType) } it 'should correctly set the instance variables' do expect(subject.name).to eq(:red) expect(subject.type).to eq(intType) expect(subject).to be_required end end context 'when not required' do subject{ Attribute.new(:red, intType, false) } it 'should correctly set the instance variables' do expect(subject.name).to eq(:red) expect(subject.type).to eq(intType) expect(subject).not_to be_required end end end end
Version data entries
19 entries across 19 versions & 1 rubygems