summaryrefslogtreecommitdiff
path: root/yaksh/test_models.py
diff options
context:
space:
mode:
authorprathamesh2017-10-26 16:11:36 +0530
committerprathamesh2017-10-26 16:11:36 +0530
commitee1bdbdaaf9a6446506719dfb074cd598d4799e4 (patch)
tree03fd70ff5c9bf284ab71163dff9e91b22e13aa07 /yaksh/test_models.py
parent85cb97096b67eb2d20fc1fd208415173a4a8be76 (diff)
downloadonline_test-ee1bdbdaaf9a6446506719dfb074cd598d4799e4.tar.gz
online_test-ee1bdbdaaf9a6446506719dfb074cd598d4799e4.tar.bz2
online_test-ee1bdbdaaf9a6446506719dfb074cd598d4799e4.zip
Removed a testcase check for now
As the questions are not assigned in a cleaner way in the setup. Will modify and add the PR improved testcases
Diffstat (limited to 'yaksh/test_models.py')
-rw-r--r--yaksh/test_models.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/yaksh/test_models.py b/yaksh/test_models.py
index 7bb5c39..ee698a6 100644
--- a/yaksh/test_models.py
+++ b/yaksh/test_models.py
@@ -464,14 +464,6 @@ class QuestionPaperTestCases(unittest.TestCase):
def test_get_question_bank(self):
# Given
- ids = [4, 6, 7, 8, 9, 10, 12, 13, 14, 15]
- questions = list(Question.objects.filter(id__in=ids))
- # When
- question_bank = self.question_paper.get_question_bank()
- # Then
- self.assertSequenceEqual(questions, question_bank)
-
- # Given
ids = [11, 10]
questions = list(Question.objects.filter(id__in=ids))
# When