summaryrefslogtreecommitdiffstats
path: root/spec/unit/parser/ast/selector.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/parser/ast/selector.rb')
-rwxr-xr-xspec/unit/parser/ast/selector.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/spec/unit/parser/ast/selector.rb b/spec/unit/parser/ast/selector.rb
index 2ba83ad7b..f9a1efe6c 100755
--- a/spec/unit/parser/ast/selector.rb
+++ b/spec/unit/parser/ast/selector.rb
@@ -40,16 +40,6 @@ describe Puppet::Parser::AST::Selector do
@selector.evaluate(@scope)
end
- it "should downcase the evaluated param value if allowed" do
- Puppet.stubs(:[]).with(:casesensitive).returns(false)
- value = stub 'param'
- @param.stubs(:safeevaluate).with(@scope).returns(value)
-
- value.expects(:downcase)
-
- @selector.evaluate(@scope)
- end
-
it "should scan each option" do
@values.expects(:each).multiple_yields(@value1, @value2)