summaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rwxr-xr-xspec/unit/indirector/node/exec.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/spec/unit/indirector/node/exec.rb b/spec/unit/indirector/node/exec.rb
index 2276e4298..09f13ab90 100755
--- a/spec/unit/indirector/node/exec.rb
+++ b/spec/unit/indirector/node/exec.rb
@@ -49,12 +49,6 @@ describe Puppet::Node::Exec do
@searcher.find(@request)
end
- it "should convert all parameters into strings" do
- @result[:parameters] = {"a" => true, "c" => 100}
- @node.expects(:parameters=).with "a" => "true", "c" => "100"
- @searcher.find(@request)
- end
-
it "should set the resulting classes as the node classes" do
@result[:classes] = %w{one two}
@node.expects(:classes=).with %w{one two}