forked from thoughtbot/factory_bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
35 lines (28 loc) · 877 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
require "rubygems"
require "bundler"
require "rake"
require "yard"
require "rspec/core/rake_task"
require "cucumber/rake/task"
require "standard/rake"
Bundler::GemHelper.install_tasks(name: "factory_bot")
desc "Default: run the specs, features, and standard ."
task default: %w[spec:unit spec:acceptance features standard]
namespace :spec do
desc "Run unit specs"
RSpec::Core::RakeTask.new("unit") do |t|
t.pattern = "spec/{*_spec.rb,factory_bot/**/*_spec.rb}"
end
desc "Run acceptance specs"
RSpec::Core::RakeTask.new("acceptance") do |t|
t.pattern = "spec/acceptance/**/*_spec.rb"
end
end
desc "Run the unit and acceptance specs"
task spec: ["spec:unit", "spec:acceptance"]
Cucumber::Rake::Task.new(:features) do |t|
t.fork = true
t.cucumber_opts = ["--format", (ENV["CUCUMBER_FORMAT"] || "progress")]
end
YARD::Rake::YardocTask.new do |t|
end