59 lines
1.1 KiB
Ruby
59 lines
1.1 KiB
Ruby
require 'factory_girl'
|
|
require 'faker'
|
|
|
|
FactoryGirl.definition_file_paths = Dir["#{Rails.root}/vendor/built_in_modules/*/spec/factories"]
|
|
|
|
FactoryGirl.find_definitions
|
|
|
|
|
|
ConferenceCoAuthorRelation.destroy_all
|
|
ConferenceCoAuthor.destroy_all
|
|
ConferencePaperType.destroy_all
|
|
WritingConferenceFile.destroy_all
|
|
WritingConference.destroy_all
|
|
#Dir[Rails.root.join("spec/factories/*.rb")].each {|f| require f}
|
|
|
|
|
|
2.times do
|
|
FactoryGirl.create(:conference_paper_type)
|
|
end
|
|
|
|
10.times do
|
|
FactoryGirl.create(:conference_co_author_relation)
|
|
end
|
|
|
|
50.times do
|
|
FactoryGirl.create(:conference_co_author)
|
|
end
|
|
|
|
50.times do
|
|
FactoryGirl.create(:writing_conference)
|
|
end
|
|
|
|
puts "Success!"
|
|
|
|
# =======
|
|
#
|
|
#CoAuthorRelation.destroy_all
|
|
#CoAuthor.destroy_all
|
|
#JournalLevelType.destroy_all
|
|
#WritingJournalFile.destroy_all
|
|
#WritingJournal.destroy_all
|
|
#
|
|
#10.size.times do
|
|
# FactoryGirl.create(:journal_level)
|
|
#end
|
|
#
|
|
#10.times do
|
|
# FactoryGirl.create(:journal_relation)
|
|
#end
|
|
#
|
|
#50.times do
|
|
# FactoryGirl.create(:journal)
|
|
#end
|
|
#
|
|
#50.times do
|
|
# FactoryGirl.create(:journal_co_author)
|
|
#end
|
|
#puts "Success!"
|