summaryrefslogtreecommitdiff
path: root/test/factories/languages.rb
blob: a8ecace40d07733cd9165ed780f7707300211d0b (plain)
1
2
3
4
5
6
7
8
# Read about factories at http://github.com/thoughtbot/factory_girl

FactoryGirl.define do
  factory :language do
    name 'Deutsch'
    code 'de'
  end
end