Sha256: 32764589d89662beb2b9083a3577e5faa50f7547b91c0d16803f1bbf4124ff19
Contents?: true
Size: 373 Bytes
Versions: 21
Compression:
Stored size: 373 Bytes
Contents
require 'spec_helper' module Finitio describe SeqType, 'name' do subject{ type.name } context 'when not specified' do let(:type){ SeqType.new(intType) } it{ should eq('[intType]') } end context 'when specified' do let(:type){ SeqType.new(intType, "foo") } it{ should eq('foo') } end end end
Version data entries
21 entries across 21 versions & 1 rubygems