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

7 lines
245 B
Ruby

FactoryBot.define do
factory :error, class: CodeOcean::Error do
association :execution_environment, factory: :ruby
message { "exercise.rb:4:in `<main>': undefined local variable or method `foo' for main:Object (NameError)" }
end
end