mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
bc421ae96c
Includes a simple test of Compute class.
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("test", "**", "*_test.rb")
|
|
end
|