2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2012-01-27 15:35:18 +00:00
|
|
|
# Read about factories at http://github.com/thoughtbot/factory_girl
|
|
|
|
|
|
|
|
FactoryGirl.define do
|
|
|
|
factory :project_import do
|
|
|
|
project nil
|
|
|
|
name "MyString"
|
|
|
|
version "MyString"
|
|
|
|
end
|
2012-01-30 20:39:34 +00:00
|
|
|
end
|