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/parser/functions/require.rb | 7 ------- 1 file changed, 7 deletions(-) (limited to 'spec/integration/parser') 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 -- cgit