Files
fetsite/spec/factories/moduls.rb
2013-08-05 11:12:07 +02:00

11 lines
193 B
Ruby

# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :modul do
name ""
factory :other_modul do
name "Modul 1"
end
end
end