mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
16 lines
383 B
Ruby
16 lines
383 B
Ruby
namespace :factory_girl do
|
|
desc "Verify that all FactoryGirl factories are valid"
|
|
task lint: :environment do
|
|
if Rails.env.test?
|
|
begin
|
|
DatabaseCleaner.start
|
|
mock_commercial_request
|
|
FactoryGirl.lint
|
|
ensure
|
|
DatabaseCleaner.clean
|
|
end
|
|
else
|
|
system("bundle exec rake factory_girl:lint RAILS_ENV='test'")
|
|
end
|
|
end
|
|
end
|