Skip to content
This repository has been archived by the owner on Jun 30, 2021. It is now read-only.

Commit

Permalink
Fix task for running tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
dra1n authored and chuckg committed Oct 11, 2012
1 parent b7f02f0 commit 87adbaa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ desc 'Test the rails3_acts_as_paranoid plugin.'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.libs << 'test'
t.pattern = 'test/**/test_*.rb'

test_files = FileList['test/**/test_*.rb']
test_files.exclude('test/test_helper.rb')
t.test_files = test_files

t.verbose = true
end

Expand Down

0 comments on commit 87adbaa

Please sign in to comment.