Files
codeocean/spec/factories/proxy_exercise.rb
Sebastian Serth 59257d17f2 Add user (ID and type) to proxy exercise
This is required for the existing policies to work
2018-12-06 00:31:45 +01:00

9 lines
155 B
Ruby

FactoryBot.define do
factory :proxy_exercise, class: ProxyExercise do
created_by_teacher
token { 'dummytoken' }
title { 'Dummy' }
end
end