Skip to content

Commit a1bab58

Browse files
author
Jeff McCune
committed
Merge pull request #81 from jeffmccune/maint/2.2.x/rename_seams_to_internals
(Maint) Rename PuppetlabsSpec::Puppet{Seams,Internals}
2 parents 6a63fdf + 99f0848 commit a1bab58

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+54
-54
lines changed

spec/unit/puppet/parser/functions/abs_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
require 'spec_helper'
44

55
describe "the abs function" do
6-
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
6+
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
77

88
it "should exist" do
99
Puppet::Parser::Functions.function("abs").should == "function_abs"

spec/unit/puppet/parser/functions/bool2num_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
require 'spec_helper'
33

44
describe "the bool2num function" do
5-
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
5+
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
66

77
it "should exist" do
88
Puppet::Parser::Functions.function("bool2num").should == "function_bool2num"

spec/unit/puppet/parser/functions/capitalize_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
require 'spec_helper'
33

44
describe "the capitalize function" do
5-
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
5+
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
66

77
it "should exist" do
88
Puppet::Parser::Functions.function("capitalize").should == "function_capitalize"

spec/unit/puppet/parser/functions/chomp_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
require 'spec_helper'
33

44
describe "the chomp function" do
5-
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
5+
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
66

77
it "should exist" do
88
Puppet::Parser::Functions.function("chomp").should == "function_chomp"

spec/unit/puppet/parser/functions/chop_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
require 'spec_helper'
33

44
describe "the chop function" do
5-
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
5+
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
66

77
it "should exist" do
88
Puppet::Parser::Functions.function("chop").should == "function_chop"

spec/unit/puppet/parser/functions/delete_at_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
require 'spec_helper'
33

44
describe "the delete_at function" do
5-
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
5+
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
66

77
it "should exist" do
88
Puppet::Parser::Functions.function("delete_at").should == "function_delete_at"

spec/unit/puppet/parser/functions/delete_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
require 'spec_helper'
33

44
describe "the delete function" do
5-
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
5+
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
66

77
it "should exist" do
88
Puppet::Parser::Functions.function("delete").should == "function_delete"

spec/unit/puppet/parser/functions/downcase_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
require 'spec_helper'
33

44
describe "the downcase function" do
5-
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
5+
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
66

77
it "should exist" do
88
Puppet::Parser::Functions.function("downcase").should == "function_downcase"

spec/unit/puppet/parser/functions/empty_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
require 'spec_helper'
33

44
describe "the empty function" do
5-
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
5+
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
66
it "should exist" do
77
Puppet::Parser::Functions.function("empty").should == "function_empty"
88
end

spec/unit/puppet/parser/functions/flatten_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
require 'spec_helper'
33

44
describe "the flatten function" do
5-
let(:scope) { PuppetlabsSpec::PuppetSeams.parser_scope }
5+
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
66
it "should exist" do
77
Puppet::Parser::Functions.function("flatten").should == "function_flatten"
88
end

0 commit comments

Comments
 (0)