summaryrefslogtreecommitdiffstats
path: root/spec/unit/application
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/application')
-rwxr-xr-xspec/unit/application/puppetd.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/spec/unit/application/puppetd.rb b/spec/unit/application/puppetd.rb
index 19dfaf3e0..e5a51675d 100755
--- a/spec/unit/application/puppetd.rb
+++ b/spec/unit/application/puppetd.rb
@@ -407,14 +407,6 @@ describe "puppetd" do
@puppetd.setup_listen
end
- it "should set :cacrl to nil if no cacrl file" do
- Puppet.expects(:[]).with(:cacrl).returns('cacrl')
- File.expects(:exist?).with('cacrl').returns(false)
- Puppet.expects(:[]=).with(:cacrl,nil)
-
- @puppetd.setup_listen
- end
-
it "should create a server to listen on at least the Runner handler" do
Puppet::Network::Server.expects(:new).with { |args| args[:xmlrpc_handlers] == [:Runner] }