Files
codeocean/spec/factories/error_templates.rb
2018-11-06 16:46:00 +01:00

8 lines
168 B
Ruby

FactoryBot.define do
factory :error_template do
association :execution_environment, factory: :ruby
name { "MyString" }
signature { "MyString" }
end
end