Sha256: 2c027ce654c1301741682a0b76db5bb64ce6fc8d0ead050ca0e9d4f29e450f84
Contents?: true
Size: 424 Bytes
Versions: 19
Compression:
Stored size: 424 Bytes
Contents
require 'spec_helper' module Finitio describe Attribute, "optional?" do it 'is false by default' do expect(Attribute.new(:red, intType)).not_to be_optional end it 'is is the reverse of required' do expect(Attribute.new(:red, intType, false)).to be_optional end it 'is is the reverse of !required' do expect(Attribute.new(:red, intType, true)).not_to be_optional end end end
Version data entries
19 entries across 19 versions & 1 rubygems