summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xspec/integration/parser/functions/require.rb7
-rwxr-xr-xspec/integration/util/autoload.rb12
2 files changed, 0 insertions, 19 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
diff --git a/spec/integration/util/autoload.rb b/spec/integration/util/autoload.rb
index dd9752d01..f84c00bcb 100755
--- a/spec/integration/util/autoload.rb
+++ b/spec/integration/util/autoload.rb
@@ -67,18 +67,6 @@ describe Puppet::Util::Autoload do
}
end
- it "should successfully load a file with a mixed case name" do
- on_disk = "MyThing.rb"
- in_code = :mything
- with_loader("foo", "bar") { |dir,loader|
- with_file(in_code, dir, on_disk) {
- loader.load(in_code).should be_true
- loader.should be_loaded(in_code)
- AutoloadIntegrator.should be_thing(in_code)
- }
- }
- end
-
it "should consider a file loaded when asked for the name without an extension" do
with_loader("foo", "bar") { |dir,loader|
with_file(:noext, dir, "noext.rb") {