Sha256: c346a8e74bd69e6d7119bfc19795a70c6ef133052fcfba82f70e12b30b46185a
Contents?: true
Size: 952 Bytes
Versions: 2
Compression:
Stored size: 952 Bytes
Contents
require 'spec_helper' module Finitio describe SeqType, 'dress' do let(:type){ SeqType.new(byte) } subject{ type.dress(arg) } context 'with an empty array' do let(:arg){ [] } it{ should eq([]) } end context 'with a valid array' do let(:arg){ [12, 16] } it{ should eq([12, 16]) } end context 'with not a enumerable' do let(:arg){ "foo" } it 'should raise an error' do ->{ subject }.should raise_error("Invalid value `foo` for [Byte]") end end context 'with an array with non bytes' do let(:arg){ [2, 4, -12] } subject{ type.dress(arg) rescue $! } it 'should raise an error' do subject.should be_a(TypeError) subject.message.should eq("Invalid value `-12` for Byte") end it 'should have correct location' do subject.location.should eq("2") end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
finitio-0.4.1 | spec/unit/type/seq_type/test_dress.rb |
finitio-0.4.0 | spec/unit/type/seq_type/test_dress.rb |