summaryrefslogtreecommitdiff
path: root/test/factories/users.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/factories/users.rb')
-rw-r--r--test/factories/users.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/factories/users.rb b/test/factories/users.rb
new file mode 100644
index 0000000..3d53141
--- /dev/null
+++ b/test/factories/users.rb
@@ -0,0 +1,11 @@
+# Read about factories at http://github.com/thoughtbot/factory_girl
+
+Factory.define :user do |f|
+ f.sequence(:user_name) { |n| "User #{n}" }
+ f.sequence(:first_name) { |n| "John #{n}" }
+ f.sequence(:last_name) { |n| "Smith #{n}" }
+ f.sequence(:email) { |n| "john.smith#{n}@company.com" }
+ f.sequence(:password) { |n| "Testpassword#{n}" }
+ f.sequence(:password_confirmation) { |n| "Testpassword#{n}" }
+ f.association :language
+end \ No newline at end of file