diff options
author | Jesse Wolfe <jes5199@gmail.com> | 2010-08-17 12:02:05 -0700 |
---|---|---|
committer | Jesse Wolfe <jes5199@gmail.com> | 2010-08-17 12:25:37 -0700 |
commit | 16f701edd89a320ad73b5468d883dfb017fe6e96 (patch) | |
tree | 0063bdd34139f0ba09be638f8eabf4bf0e596008 /spec/unit/parser/scope_spec.rb | |
parent | 3c090de39897d85a5d5be20254efcddea14ad8ad (diff) | |
parent | 4da88fb4cd57871f16649d50572240ac3f7420f0 (diff) | |
download | puppet-16f701edd89a320ad73b5468d883dfb017fe6e96.tar.gz puppet-16f701edd89a320ad73b5468d883dfb017fe6e96.tar.xz puppet-16f701edd89a320ad73b5468d883dfb017fe6e96.zip |
Merge remote branch 'paul/4472-4483-4496-4521-4522'
a.k.a. "make_taller_trees"
Diffstat (limited to 'spec/unit/parser/scope_spec.rb')
-rwxr-xr-x | spec/unit/parser/scope_spec.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/spec/unit/parser/scope_spec.rb b/spec/unit/parser/scope_spec.rb index 9895f446b..2e390a53b 100755 --- a/spec/unit/parser/scope_spec.rb +++ b/spec/unit/parser/scope_spec.rb @@ -29,8 +29,7 @@ describe Puppet::Parser::Scope do end it "should be able to retrieve its parent module name from the source of its parent type" do - @topscope.source = Puppet::Resource::Type.new(:hostclass, :foo) - @topscope.source.module_name = "foo" + @topscope.source = Puppet::Resource::Type.new(:hostclass, :foo, :module_name => "foo") @scope.parent_module_name.should == "foo" end |