Sha256: 5f30e21140a435e940a14acc963d954f20498144079ad8d9dec0e1c37ceaf598

Contents?: true

Size: 757 Bytes

Versions: 19

Compression:

Stored size: 757 Bytes

Contents

require 'spec_helper'
module Finitio
  describe Syntax, "seq_type" do

    subject{
      Syntax.parse(input, root: "seq_type")
    }

    describe "compilation result" do
      let(:compiled){
        subject.compile(type_factory)
      }

      context '[.Integer]' do
        let(:input){ '[.Integer]' }

        it 'compiles to a SeqType' do
          expect(compiled).to be_a(SeqType)
          expect(compiled.elm_type).to be_a(BuiltinType)
          expect(compiled.elm_type.ruby_type).to be(Integer)
        end
      end
    end

    describe "AST" do
      let(:input){ '[.Integer]' }

      let(:ast){ subject.to_ast }

      it{ expect(ast).to eq([
          :seq_type,
          [:builtin_type, "Integer"]
        ])
      }
    end

  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
finitio-0.12.0 spec/syntax/nodes/test_seq_type.rb
finitio-0.11.4 spec/syntax/nodes/test_seq_type.rb
finitio-0.11.3 spec/syntax/nodes/test_seq_type.rb
finitio-0.11.2 spec/syntax/nodes/test_seq_type.rb
finitio-0.11.1 spec/syntax/nodes/test_seq_type.rb
finitio-0.10.0 spec/syntax/nodes/test_seq_type.rb
finitio-0.9.1 spec/syntax/nodes/test_seq_type.rb
finitio-0.9.0 spec/syntax/nodes/test_seq_type.rb
finitio-0.8.0 spec/syntax/nodes/test_seq_type.rb
finitio-0.7.0 spec/syntax/nodes/test_seq_type.rb
finitio-0.7.0.pre.rc4 spec/syntax/nodes/test_seq_type.rb
finitio-0.7.0.pre.rc3 spec/syntax/nodes/test_seq_type.rb
finitio-0.7.0.pre.rc2 spec/syntax/nodes/test_seq_type.rb
finitio-0.7.0.pre.rc1 spec/syntax/nodes/test_seq_type.rb
finitio-0.6.1 spec/syntax/nodes/test_seq_type.rb
finitio-0.6.0 spec/syntax/nodes/test_seq_type.rb
finitio-0.5.2 spec/syntax/nodes/test_seq_type.rb
finitio-0.5.1 spec/syntax/nodes/test_seq_type.rb
finitio-0.5.0 spec/syntax/nodes/test_seq_type.rb