generate completed quizzes
This commit is contained in:
10
lib/tasks/faker.rake
Normal file
10
lib/tasks/faker.rake
Normal file
@ -0,0 +1,10 @@
|
||||
# frozen_string_literal: true
|
||||
namespace :faker do
|
||||
desc "Generates 10 fake candidates with results."
|
||||
task results: :environment do
|
||||
puts "Not for production use" and return if Rails.env == "production"
|
||||
|
||||
faker = FakeQuiz.new
|
||||
faker.create_completed_quizzes 10
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user