Files
codeocean/spec/features/factories_spec.rb
2021-05-14 22:03:06 +02:00

10 lines
207 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
describe 'Factories' do
it 'are all valid', docker: true, permitted_execution_time: 30 do
expect { FactoryBot.lint }.not_to raise_error
end
end