mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-04 00:00:47 -04:00
- 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.
8 lines
117 B
Ruby
8 lines
117 B
Ruby
require 'rake/testtask'
|
|
|
|
task :default => [:test]
|
|
|
|
Rake::TestTask.new do |t|
|
|
t.pattern = './test/**/*_test.rb'
|
|
end
|