Sha256: 8a03cecd6a141d162e7b1af323d80cbf087678eeb4d888716c4946d50c71ea06

Contents?: true

Size: 640 Bytes

Versions: 19

Compression:

Stored size: 640 Bytes

Contents

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

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

    let(:compiled){
      subject.compile(type_factory)
    }

    let(:ast){
      subject.to_ast
    }

    context '(i | i >= 0)' do
      let(:input){ '(i | i >= 0)' }

      it 'compiles to an Array' do
        expect(compiled).to be_a(Array)
      end

      it 'has the expected AST' do
        expect(ast).to eq([
          [
            :constraint,
            "default",
            [:fn, [:parameters, "i"], [:source, "i >= 0"]]
          ]
        ])
      end
    end

  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

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