7 lines
217 B
Ruby
7 lines
217 B
Ruby
FactoryGirl.define do
|
|
factory :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
|