diff options
author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-19 15:09:13 +0000 |
---|---|---|
committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-19 15:09:13 +0000 |
commit | f8545cf7a3e5fb847a38bd0a6fdd5bb36cb8c0ee (patch) | |
tree | dee67ce343737eed4b783325eaabf5b1f9686902 /lib/test | |
parent | 662573836f4032f71c0660c5155833abcc0f0f89 (diff) | |
download | ruby-f8545cf7a3e5fb847a38bd0a6fdd5bb36cb8c0ee.tar.gz ruby-f8545cf7a3e5fb847a38bd0a6fdd5bb36cb8c0ee.tar.xz ruby-f8545cf7a3e5fb847a38bd0a6fdd5bb36cb8c0ee.zip |
* lib/test/unit/collector/dir.rb: typo fix.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7323 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/test')
-rw-r--r-- | lib/test/unit/collector/dir.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/test/unit/collector/dir.rb b/lib/test/unit/collector/dir.rb index 448989e5e..bf78f3a50 100644 --- a/lib/test/unit/collector/dir.rb +++ b/lib/test/unit/collector/dir.rb @@ -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) |