summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorSHIBATA Hiroshi <hsbt@ruby-lang.org>2016-07-12 10:43:08 +0900
committerSHIBATA Hiroshi <hsbt@ruby-lang.org>2016-07-12 10:43:08 +0900
commit14ceff2456cd5c76ba302eb41b4939c3c923e7f1 (patch)
tree061823ee000e9194283933b0e1454fd2b74556bd /Rakefile
parent2d88b23414b0d7b29465e84f1dfd72afa00bd993 (diff)
downloadpsych-14ceff2456cd5c76ba302eb41b4939c3c923e7f1.tar.gz
fixed regex for test files
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 85ae679..6a98ba0 100644
--- a/Rakefile
+++ b/Rakefile
@@ -4,7 +4,7 @@ require "rake/testtask"
Rake::TestTask.new(:test) do |t|
t.libs << "test"
t.libs << "lib"
- t.test_files = FileList['test/**/*_test.rb']
+ t.test_files = FileList['test/**/test_*.rb']
end
if RUBY_PLATFORM =~ /java/