From ac7efc8f0284d6b35f5428da06ba371cf94998ec Mon Sep 17 00:00:00 2001 From: Jesse Wolfe Date: Wed, 12 May 2010 18:25:14 -0700 Subject: Feature #2935 Puppet::Mode#master? Use a predicate function on the Mode object instead of comparing with the executable name everywhere Signed-off-by: Jesse Wolfe --- spec/unit/application/doc.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'spec/unit/application') diff --git a/spec/unit/application/doc.rb b/spec/unit/application/doc.rb index c224b0de5..960ef7ac6 100755 --- a/spec/unit/application/doc.rb +++ b/spec/unit/application/doc.rb @@ -190,7 +190,6 @@ describe Puppet::Application::Doc do before :each do @doc.options.stubs(:[]).returns(false) - Puppet.stubs(:[]=).with(:name, "puppetmasterd") Puppet.stubs(:parse_config) Puppet::Util::Log.stubs(:level=) Puppet::Util::Log.stubs(:newdestination) @@ -224,8 +223,8 @@ describe Puppet::Application::Doc do end end - it "should pretend to be puppetmasterd" do - Puppet.expects(:[]=).with(:name, "puppetmasterd") + it "should operate in master mode" do + @doc.class.mode.name.should == :master @doc.setup_rdoc end -- cgit