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