diff options
| author | James Turnbull <james@lovedthanlost.net> | 2008-10-05 22:50:18 +1100 |
|---|---|---|
| committer | James Turnbull <james@lovedthanlost.net> | 2008-10-05 22:50:18 +1100 |
| commit | 06edac4a23b7d0c27e471c837fa34432dbc5f806 (patch) | |
| tree | 01e55f1277b6197ffbe2b2ef79f0d6a146e05cc9 | |
| parent | 79bb1f201c1479a15fa2f0f8ad5467bd357ed707 (diff) | |
| download | puppet-06edac4a23b7d0c27e471c837fa34432dbc5f806.tar.gz puppet-06edac4a23b7d0c27e471c837fa34432dbc5f806.tar.xz puppet-06edac4a23b7d0c27e471c837fa34432dbc5f806.zip | |
Fixed additional environments tests
| -rwxr-xr-x | spec/unit/node.rb | 4 | ||||
| -rwxr-xr-x | test/network/client/master.rb | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/spec/unit/node.rb b/spec/unit/node.rb index cd221498b..a72c117ff 100755 --- a/spec/unit/node.rb +++ b/spec/unit/node.rb @@ -45,7 +45,7 @@ describe Puppet::Node, "when initializing" do end it "should accept an environment value" do - Puppet.settings.stubs(:value).with(:environments).returns("myenv") + Puppet.settings.stubs(:value).with(:environment).returns("myenv") @node = Puppet::Node.new("testing", :environment => "myenv") @node.environment.should == "myenv" end @@ -53,7 +53,7 @@ end describe Puppet::Node, "when returning the environment" do before do - Puppet.settings.stubs(:value).with(:environments).returns("one,two") + Puppet.settings.stubs(:value).with(:environment).returns("one,two") Puppet.settings.stubs(:value).with(:environment).returns("one") @node = Puppet::Node.new("testnode") end diff --git a/test/network/client/master.rb b/test/network/client/master.rb index 0c1405217..4a749ac44 100755 --- a/test/network/client/master.rb +++ b/test/network/client/master.rb @@ -419,8 +419,7 @@ end assert_equal(facts["environment"], Puppet[:environment], "Did not add environment to client facts") # Now set it to a real value - Puppet[:environments] = "something,else" - Puppet[:environment] = "something" + Puppet[:environment] = "something" facts = Puppet::Network::Client::Master.facts assert_equal(facts["environment"], Puppet[:environment], "Did not add environment to client facts") end |
