diff options
Diffstat (limited to 'test/factories/languages.rb')
-rw-r--r-- | test/factories/languages.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/factories/languages.rb b/test/factories/languages.rb new file mode 100644 index 0000000..29d2ece --- /dev/null +++ b/test/factories/languages.rb @@ -0,0 +1,6 @@ +# Read about factories at http://github.com/thoughtbot/factory_girl + +Factory.define :language do |f| + f.name 'Deutsch' + f.code 'de' +end
\ No newline at end of file |