summaryrefslogtreecommitdiffstats
path: root/spec/integration/parser/functions
diff options
context:
space:
mode:
authorMarkus Roberts <Markus@reality.com>2009-08-17 21:30:44 -0700
committerJames Turnbull <james@lovedthanlost.net>2009-08-18 20:28:02 +1000
commit0ef5f228c20a34a562a1c20b206acf2af0eb41ba (patch)
tree0c82dd7bd58f171a303a1b489b49b49bc604d697 /spec/integration/parser/functions
parentc1967bb8d2e98d53182ea15fb13ac68d7bff7d84 (diff)
downloadpuppet-0ef5f228c20a34a562a1c20b206acf2af0eb41ba.tar.gz
puppet-0ef5f228c20a34a562a1c20b206acf2af0eb41ba.tar.xz
puppet-0ef5f228c20a34a562a1c20b206acf2af0eb41ba.zip
Removed misguided case sensitivity tests
Removed two failing tests added in the process of reproducing #2493 because they enforced case-insensitivity in excess of that provided by 0.24.8 and thus contrary to user expectations. Signed-off-by: Markus Roberts <Markus@reality.com>
Diffstat (limited to 'spec/integration/parser/functions')
-rwxr-xr-xspec/integration/parser/functions/require.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/spec/integration/parser/functions/require.rb b/spec/integration/parser/functions/require.rb
index 15ff51b95..79ba13d24 100755
--- a/spec/integration/parser/functions/require.rb
+++ b/spec/integration/parser/functions/require.rb
@@ -64,11 +64,4 @@ describe "the include function" do
@compiler.catalog.edge?(@scope.resource,@compiler.findresource(:class,"includedclass")).should be_true
end
- it "should find a file with an all lowercase name given a mixed case name" do
- with_file('includedclass',"class includedclass {}") {
- @scope.function_include("includedclass")
- }
- @compiler.catalog.edge?(@scope.resource,@compiler.findresource(:class,"IncludedClass")).should be_true
- end
-
end