Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(Maint) Rename PuppetlabsSpec::Puppet{Seams,Internals} #81

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/abs_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require 'spec_helper'

describe "the abs function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("abs").should == "function_abs"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/bool2num_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the bool2num function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("bool2num").should == "function_bool2num"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/capitalize_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the capitalize function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("capitalize").should == "function_capitalize"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/chomp_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the chomp function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("chomp").should == "function_chomp"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/chop_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the chop function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("chop").should == "function_chop"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/delete_at_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the delete_at function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("delete_at").should == "function_delete_at"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/delete_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the delete function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("delete").should == "function_delete"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/downcase_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the downcase function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("downcase").should == "function_downcase"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/empty_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the empty function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
it "should exist" do
Puppet::Parser::Functions.function("empty").should == "function_empty"
end
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/flatten_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the flatten function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
it "should exist" do
Puppet::Parser::Functions.function("flatten").should == "function_flatten"
end
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/getvar_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe Puppet::Parser::Functions.function(:getvar) do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
describe 'when calling getvar from puppet' do

it "should not compile when no arguments are passed" do
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/grep_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the grep function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("grep").should == "function_grep"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/has_key_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe Puppet::Parser::Functions.function(:has_key) do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

describe 'when calling has_key from puppet' do
it "should not compile when no arguments are passed" do
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/hash_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the hash function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("hash").should == "function_hash"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/is_array_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the is_array function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("is_array").should == "function_is_array"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/is_domain_name_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the is_domain_name function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("is_domain_name").should == "function_is_domain_name"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/is_float_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the is_float function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("is_float").should == "function_is_float"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/is_hash_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the is_hash function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("is_hash").should == "function_is_hash"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/is_integer_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the is_integer function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("is_integer").should == "function_is_integer"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/is_ip_address_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the is_ip_address function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("is_ip_address").should == "function_is_ip_address"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/is_mac_address_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the is_mac_address function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("is_mac_address").should == "function_is_mac_address"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/is_numeric_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the is_numeric function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("is_numeric").should == "function_is_numeric"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/is_string_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the is_string function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("is_string").should == "function_is_string"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/join_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the join function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("join").should == "function_join"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/keys_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the keys function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("keys").should == "function_keys"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/lstrip_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the lstrip function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("lstrip").should == "function_lstrip"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/member_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the member function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("member").should == "function_member"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/merge_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require 'spec_helper'

describe Puppet::Parser::Functions.function(:merge) do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

describe 'when calling merge from puppet' do
it "should not compile when no arguments are passed" do
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/num2bool_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the num2bool function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("num2bool").should == "function_num2bool"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/parsejson_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the parsejson function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("parsejson").should == "function_parsejson"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/parseyaml_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the parseyaml function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("parseyaml").should == "function_parseyaml"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/prefix_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the prefix function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("prefix").should == "function_prefix"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/range_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the range function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("range").should == "function_range"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/reverse_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the reverse function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("reverse").should == "function_reverse"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/rstrip_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the rstrip function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("rstrip").should == "function_rstrip"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/shuffle_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the shuffle function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("shuffle").should == "function_shuffle"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/size_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the size function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("size").should == "function_size"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/sort_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the sort function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("sort").should == "function_sort"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/squeeze_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the squeeze function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("squeeze").should == "function_squeeze"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/str2bool_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the str2bool function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("str2bool").should == "function_str2bool"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/strftime_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the strftime function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("strftime").should == "function_strftime"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/strip_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the strip function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
it "should exist" do
Puppet::Parser::Functions.function("strip").should == "function_strip"
end
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/swapcase_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the swapcase function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("swapcase").should == "function_swapcase"
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/parser/functions/time_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'spec_helper'

describe "the time function" do
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

it "should exist" do
Puppet::Parser::Functions.function("time").should == "function_time"
Expand Down