Sha256: a275efca0f83125fcccde99a80078101581c69859bf7d4fcf82e41e55d109d80
Contents?: true
Size: 354 Bytes
Versions: 19
Compression:
Stored size: 354 Bytes
Contents
require 'spec_helper' module Finitio describe BuiltinType, "include?" do let(:type){ BuiltinType.new(Integer) } subject{ type.include?(arg) } context 'when not included' do let(:arg){ "12" } it{ should eq(false) } end context 'when included' do let(:arg){ 12 } it{ should eq(true) } end end end
Version data entries
19 entries across 19 versions & 1 rubygems