1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/providers/brightbox/Rakefile
Paul Thornthwaite bc421ae96c [Brightbox] Use minitest in Brightbox module
Includes a simple test of Compute class.
2014-03-12 16:30:57 +00:00

8 lines
158 B
Ruby

require "bundler/gem_tasks"
require "rake/testtask"
task :default => :test
Rake::TestTask.new do |t|
t.pattern = File.join("test", "**", "*_test.rb")
end