Sha256: 9bec3ce1b5ebea3d7ca6d9fe7291d861a5c15088f9a6c54f9d70a1db97c1b232

Contents?: true

Size: 933 Bytes

Versions: 22

Compression:

Stored size: 933 Bytes

Contents

#! /usr/bin/env ruby -S rspec
require 'spec_helper'

describe "the flatten function" do
  let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
  it "should exist" do
    Puppet::Parser::Functions.function("flatten").should == "function_flatten"
  end

  it "should raise a ParseError if there is less than 1 arguments" do
    lambda { scope.function_flatten([]) }.should( raise_error(Puppet::ParseError))
  end

  it "should raise a ParseError if there is more than 1 argument" do
    lambda { scope.function_flatten([[], []]) }.should( raise_error(Puppet::ParseError))
  end

  it "should flatten a complex data structure" do
    result = scope.function_flatten([["a","b",["c",["d","e"],"f","g"]]])
    result.should(eq(["a","b","c","d","e","f","g"]))
  end

  it "should do nothing to a structure that is already flat" do
    result = scope.function_flatten([["a","b","c","d"]])
    result.should(eq(["a","b","c","d"]))
  end
end

Version data entries

22 entries across 22 versions & 2 rubygems

Version Path
freighthop-0.6.1 modules/stdlib/spec/unit/puppet/parser/functions/flatten_spec.rb
freighthop-0.6.0 modules/stdlib/spec/unit/puppet/parser/functions/flatten_spec.rb
freighthop-0.5.2 modules/stdlib/spec/unit/puppet/parser/functions/flatten_spec.rb
freighthop-0.5.1 modules/stdlib/spec/unit/puppet/parser/functions/flatten_spec.rb
freighthop-0.5.0 modules/stdlib/spec/unit/puppet/parser/functions/flatten_spec.rb
freighthop-0.4.1 modules/stdlib/spec/unit/puppet/parser/functions/flatten_spec.rb
freighthop-0.4.0 modules/stdlib/spec/unit/puppet/parser/functions/flatten_spec.rb
freighthop-0.3.3 modules/stdlib/spec/unit/puppet/parser/functions/flatten_spec.rb
freighthop-0.3.2 modules/stdlib/spec/unit/puppet/parser/functions/flatten_spec.rb
freighthop-0.3.1 modules/stdlib/spec/unit/puppet/parser/functions/flatten_spec.rb
freighthop-0.3.0 modules/stdlib/spec/unit/puppet/parser/functions/flatten_spec.rb
freighthop-0.2.1 modules/stdlib/spec/unit/puppet/parser/functions/flatten_spec.rb
freighthop-0.2.0 modules/stdlib/spec/unit/puppet/parser/functions/flatten_spec.rb
freighthop-0.1.0 modules/stdlib/spec/unit/puppet/parser/functions/flatten_spec.rb
freighthop-0.0.6 modules/stdlib/spec/unit/puppet/parser/functions/flatten_spec.rb
freighthop-0.0.5 modules/stdlib/spec/unit/puppet/parser/functions/flatten_spec.rb
freighthop-0.0.4 modules/stdlib/spec/unit/puppet/parser/functions/flatten_spec.rb
freighthop-0.0.3 modules/stdlib/spec/unit/puppet/parser/functions/flatten_spec.rb
freighthop-0.0.2 modules/stdlib/spec/unit/puppet/parser/functions/flatten_spec.rb
freighthop-0.0.1 modules/stdlib/spec/unit/puppet/parser/functions/flatten_spec.rb