1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/test/unit/collector/dir.rb: typo fix.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7323 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2004-11-19 15:09:13 +00:00
parent ab55ad1afd
commit 5913c969f1

View file

@ -55,7 +55,7 @@ module Test
sub_suite = recursive_collect(e_name, already_gathered)
sub_suites << sub_suite unless(sub_suite.empty?)
else
next if %r(/CVS|~\Z|#\.) =~ e_name
next if %r(/CVS|~\Z|\.\#) =~ e_name
next unless /test_/ =~ e_name
(next unless(@pattern =~ e_name)) if(@pattern)
(next if(@exclude =~ e_name)) if(@exclude)