From 3fadfaf258a985732d920745746c89348d605deb Mon Sep 17 00:00:00 2001 From: "bcoles@gmail.com" Date: Fri, 4 Nov 2011 17:07:58 +0000 Subject: [PATCH] Patched bug in test/unit/tc_grep.rb Now uses ../../ instad of ../../../ git-svn-id: https://beef.googlecode.com/svn/trunk@1408 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9 --- test/unit/tc_grep.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/tc_grep.rb b/test/unit/tc_grep.rb index c15199cf8..b6a4011dc 100644 --- a/test/unit/tc_grep.rb +++ b/test/unit/tc_grep.rb @@ -19,7 +19,7 @@ require 'webrick' class TC_Grep < Test::Unit::TestCase def test_grep_eval - Dir['../../../**/*.rb'].each do |path| + Dir['../../**/*.rb'].each do |path| File.open( path ) do |f| next if /tc_grep.rb/.match(path) # skip this file f.grep( /\Weval\W/im ) do |line|