mirror of
https://github.com/jcwimer/docker-swarm-autoscaler
synced 2026-03-24 23:04:43 +00:00
First release with tests
This commit is contained in:
15
tests/Rakefile
Normal file
15
tests/Rakefile
Normal file
@@ -0,0 +1,15 @@
|
||||
require 'rake'
|
||||
require 'rspec/core/rake_task'
|
||||
|
||||
task :default => :test
|
||||
|
||||
desc 'Run specs'
|
||||
RSpec::Core::RakeTask.new(:spec) do |t|
|
||||
t.pattern = Dir.glob('spec/**/*_spec.rb')
|
||||
t.rspec_opts = '--format documentation'
|
||||
t.rspec_opts << ' --color'
|
||||
end
|
||||
|
||||
task :test => [
|
||||
:spec,
|
||||
]
|
||||
Reference in New Issue
Block a user