mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-20 16:31:24 -05:00
9 lines
197 B
Ruby
9 lines
197 B
Ruby
require 'rake/testtask'
|
|
require 'rspec/core/rake_task'
|
|
|
|
namespace :test do
|
|
RSpec::Core::RakeTask.new(:unit) do |t|
|
|
t.pattern = "test/unit/**/*_test.rb"
|
|
t.rspec_opts = "--color"
|
|
end
|
|
end
|