fix user feedback controller test

This commit is contained in:
albert
2011-07-17 18:40:24 -04:00
parent 72e9da01b5
commit 98403d0cb7
17 changed files with 100 additions and 154 deletions

View File

@@ -1,5 +1,5 @@
Factory.define(:user_feedback) do |f|
f.user {|x| x.association(:user)}
f.is_positive true
f.body {Faker::Lorem.words}
f.category "positive"
f.body {Faker::Lorem.words.join(" ")}
end