From 0ef5f228c20a34a562a1c20b206acf2af0eb41ba Mon Sep 17 00:00:00 2001 From: Markus Roberts Date: Mon, 17 Aug 2009 21:30:44 -0700 Subject: 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 --- spec/integration/util/autoload.rb | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'spec/integration/util/autoload.rb') 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") { -- cgit