blob: fa8633d6b0a0081950da2613e3648a17264abdfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# frozen_string_literal: true
require 'rake'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |t|
t.pattern = 'spec/**/*_spec.rb'
end
desc 'Run all tests'
task test: :spec
task default: :test
|