Files
fetsite/spec/factories/moduls.rb
2015-08-30 14:03:01 +02:00

12 lines
194 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