mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-03 20:39:27 -05:00
8 lines
168 B
Ruby
8 lines
168 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"
|
|
end
|
|
end
|