Sha256: 82beaf61d71f970ea48ff2d8f2237748da1542b0f20bb36aea9e173f67c8420b

Contents?: true

Size: 567 Bytes

Versions: 420

Compression:

Stored size: 567 Bytes

Contents

require 'spec_helper'
require 'puppet/pops'
require_relative 'parser_rspec_helper'

describe 'egrammar parsing lambda definitions' do
  include ParserRspecHelper

  context 'without return type' do
    it 'f() |$x| { 1 }' do
      expect(dump(parse('f() |$x| { 1 }'))).to eq("(invoke f (lambda (parameters x) (block\n  1\n)))")
    end
  end

  context 'with return type' do
    it 'f() |$x| >> Integer { 1 }' do
      expect(dump(parse('f() |$x| >> Integer { 1 }'))).to eq("(invoke f (lambda (parameters x) (return_type Integer) (block\n  1\n)))")
    end
  end
end

Version data entries

420 entries across 420 versions & 1 rubygems

Version Path
puppet-8.3.0 spec/unit/pops/parser/parse_lambda_spec.rb
puppet-8.3.0-x86-mingw32 spec/unit/pops/parser/parse_lambda_spec.rb
puppet-8.3.0-x64-mingw32 spec/unit/pops/parser/parse_lambda_spec.rb
puppet-8.3.0-universal-darwin spec/unit/pops/parser/parse_lambda_spec.rb
puppet-8.4.0 spec/unit/pops/parser/parse_lambda_spec.rb
puppet-8.4.0-x86-mingw32 spec/unit/pops/parser/parse_lambda_spec.rb
puppet-8.4.0-x64-mingw32 spec/unit/pops/parser/parse_lambda_spec.rb
puppet-8.4.0-universal-darwin spec/unit/pops/parser/parse_lambda_spec.rb
puppet-7.28.0 spec/unit/pops/parser/parse_lambda_spec.rb
puppet-7.28.0-x86-mingw32 spec/unit/pops/parser/parse_lambda_spec.rb
puppet-7.28.0-x64-mingw32 spec/unit/pops/parser/parse_lambda_spec.rb
puppet-7.28.0-universal-darwin spec/unit/pops/parser/parse_lambda_spec.rb
puppet-8.3.1 spec/unit/pops/parser/parse_lambda_spec.rb
puppet-8.3.1-x86-mingw32 spec/unit/pops/parser/parse_lambda_spec.rb
puppet-8.3.1-x64-mingw32 spec/unit/pops/parser/parse_lambda_spec.rb
puppet-8.3.1-universal-darwin spec/unit/pops/parser/parse_lambda_spec.rb
puppet-7.27.0 spec/unit/pops/parser/parse_lambda_spec.rb
puppet-7.27.0-x86-mingw32 spec/unit/pops/parser/parse_lambda_spec.rb
puppet-7.27.0-x64-mingw32 spec/unit/pops/parser/parse_lambda_spec.rb
puppet-7.27.0-universal-darwin spec/unit/pops/parser/parse_lambda_spec.rb