Skip to content
This repository was archived by the owner on Dec 28, 2023. It is now read-only.

Commit de08cd7

Browse files
Fix pattern to only load files under our test directory
1 parent 217be44 commit de08cd7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Rakefile

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ task :default => [:test]
66
Rake::TestTask.new(:test) do |t|
77
t.libs << 'lib'
88
t.libs << 'test'
9-
dir = File.dirname(__FILE__)
10-
t.pattern = "#{dir}/**/*_test.rb"
9+
t.pattern = "test/**/*_test.rb"
1110
t.verbose = true
1211
t.warning = true
1312
end

0 commit comments

Comments
 (0)