mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
2bd274eb23
Using spec form is going to be the standard way to testing (but relying on asserts). This update allows the test(s) to be picked up by the main rake task again.
8 lines
158 B
Ruby
8 lines
158 B
Ruby
require "bundler/gem_tasks"
|
|
require "rake/testtask"
|
|
|
|
task :default => :test
|
|
|
|
Rake::TestTask.new do |t|
|
|
t.pattern = File.join("spec", "**", "*_spec.rb")
|
|
end
|