stripe-ruby/Rakefile
Russell Davis 2827ad15d6 Run tests using TestTask
- Runs all tests at once instead of one at a time, this way we don't pay
the cost of constantly reloading the environment. Takes test time from 20
seconds to 4.

- Removes the separate testing using activesupport/all, which wasn't actually
doing anything since the tests were running in a separate process.

Thanks to @JoshCheek for surfacing these issues.
2014-07-11 14:54:21 -07:00

8 lines
117 B
Ruby

require 'rake/testtask'
task :default => [:test]
Rake::TestTask.new do |t|
t.pattern = './test/**/*_test.rb'
end