mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
c716ce01b4
Also: add a deprecation warning to factory_girl, asking users to switch to factory_bot https://github.com/thoughtbot/factory_girl/issues/921
36 lines
856 B
Ruby
36 lines
856 B
Ruby
require 'rubygems'
|
|
require 'bundler'
|
|
require 'rake'
|
|
require 'appraisal'
|
|
require 'yard'
|
|
require 'rspec/core/rake_task'
|
|
require 'cucumber/rake/task'
|
|
|
|
Bundler::GemHelper.install_tasks(name: 'factory_bot')
|
|
|
|
desc 'Default: run the specs and features.'
|
|
task default: %w(spec:unit spec:acceptance features)
|
|
|
|
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
|
|
|