Sha256: 42d02433e02574e24a43fcc7349d50f08c6b49d7a3f7f8378bdf2196b98a70f2
Contents?: true
Size: 472 Bytes
Versions: 19
Compression:
Stored size: 472 Bytes
Contents
require 'spec_helper' module Finitio describe UnionType, "include?" do let(:type){ UnionType.new([intType, floatType]) } subject{ type.include?(arg) } context 'when not included' do let(:arg){ "12" } it{ should eq(false) } end context 'when included on int' do let(:arg){ 12 } it{ should eq(true) } end context 'when included on float' do let(:arg){ 12.0 } it{ should eq(true) } end end end
Version data entries
19 entries across 19 versions & 1 rubygems