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

10 lines
199 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :error_template do
association :execution_environment, factory: :ruby
name { 'MyString' }
signature { 'MyString' }
end
end