21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-26 20:28:49 +02:00
chexpire/lib/tasks/factory_bot.rake

14 lines
344 B
Ruby
Raw Normal View History

2018-06-02 14:44:00 +02:00
namespace :factory_bot do
desc "Verify that all FactoryBot factories are valid"
task lint: :environment do
if Rails.env.test?
DatabaseCleaner.cleaning do
FactoryBot.lint
end
else
system("bundle exec rake factory_bot:lint RAILS_ENV='test'")
fail if $CHILD_STATUS.exitstatus.nonzero?
end
end
end