Files
codeocean/spec/factories/error_templates.rb
2023-06-11 20:46:45 +02:00

10 lines
185 B
Ruby

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