Files
codeocean/spec/factories/runner.rb
2021-11-01 17:12:48 +01:00

12 lines
330 B
Ruby

# frozen_string_literal: true
# This factory does not request the runner management as the id is already provided.
FactoryBot.define do
factory :runner do
runner_id { 'test-runner-id' }
association :execution_environment, factory: :ruby
association :user, factory: :external_user
waiting_time { 1.0 }
end
end