9 lines
125 B
Ruby
9 lines
125 B
Ruby
|
FactoryGirl.define do
|
||
|
factory :game_output, :class => 'GameOutputs' do
|
||
|
code 1
|
||
|
msg "MyText"
|
||
|
out_put "MyText"
|
||
|
end
|
||
|
|
||
|
end
|