9 lines
196 B
Ruby
9 lines
196 B
Ruby
|
# Read about factories at http://github.com/thoughtbot/factory_girl
|
||
|
|
||
|
FactoryGirl.define do
|
||
|
factory :project_import do
|
||
|
project nil
|
||
|
name "MyString"
|
||
|
version "MyString"
|
||
|
end
|
||
|
end
|