aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetteri Räty <betelgeuse@gentoo.org>2011-03-12 21:13:18 +0200
committerPetteri Räty <betelgeuse@gentoo.org>2011-03-12 21:13:18 +0200
commitc38161f8d317aee036f197a9b670f96dcd4c9ec3 (patch)
tree3ba7b4cd90a3bb5ea4a351c3c3221fd8de8603fd /spec/models/user_category_spec.rb
parentRename QuestionCategory to Category (diff)
downloadrecruiting-webapp-c38161f8d317aee036f197a9b670f96dcd4c9ec3.tar.gz
recruiting-webapp-c38161f8d317aee036f197a9b670f96dcd4c9ec3.tar.bz2
recruiting-webapp-c38161f8d317aee036f197a9b670f96dcd4c9ec3.zip
Questions can belong to many categories
While starting to input quiz questions for the arch tester quizzes we found out that it would be best if questions could belong to many categories. Now the relationship between questions and categories is many to many. Bug #356179.
Diffstat (limited to 'spec/models/user_category_spec.rb')
-rw-r--r--spec/models/user_category_spec.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/models/user_category_spec.rb b/spec/models/user_category_spec.rb
index 99efdea..130a359 100644
--- a/spec/models/user_category_spec.rb
+++ b/spec/models/user_category_spec.rb
@@ -70,7 +70,9 @@ describe UserCategory do
for n in 1..5
groups_in_cat.push Factory(:question_group)
for i in 1..n
- Factory(:question, :category => category, :question_group => groups_in_cat.last)
+ Factory(:question_category,
+ :category => category,
+ :question => Factory(:question, :question_group => groups_in_cat.last))
end
end