Files
codeocean/spec/factories/codeharbor_link.rb
2019-12-06 17:25:00 +01:00

9 lines
217 B
Ruby

FactoryBot.define do
factory :codeharbor_link do
user { build(:teacher) }
push_url { 'http://push.url' }
check_uuid_url { 'http://check-uuid.url' }
sequence(:api_key) { |n| "api_key#{n}" }
end
end