diff options
author | maheshgudi | 2018-07-13 16:48:21 +0530 |
---|---|---|
committer | maheshgudi | 2018-07-13 16:48:21 +0530 |
commit | 590dc4a5e99fc1f72287d13e5ce25d1506b4e518 (patch) | |
tree | 67018aefddc6cd215c1f8f4fce6741dc8b625bfa /yaksh/models.py | |
parent | f3ed3db3f707e358694eee837cde6e7dd8edb241 (diff) | |
download | online_test-590dc4a5e99fc1f72287d13e5ce25d1506b4e518.tar.gz online_test-590dc4a5e99fc1f72287d13e5ce25d1506b4e518.tar.bz2 online_test-590dc4a5e99fc1f72287d13e5ce25d1506b4e518.zip |
Fix unit and selenium tests for simple questions
Diffstat (limited to 'yaksh/models.py')
-rw-r--r-- | yaksh/models.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/yaksh/models.py b/yaksh/models.py index f8dac8b..f7adfd8 100644 --- a/yaksh/models.py +++ b/yaksh/models.py @@ -1595,9 +1595,11 @@ class QuestionPaper(models.Model): question_paper = QuestionPaper.objects.create(quiz=demo_quiz, shuffle_questions=False ) - summaries = ['Roots of quadratic equation', 'Print Output', + summaries = ['Find the value of n', 'Print Output in Python2.x', 'Adding decimals', 'For Loop over String', - 'Hello World in File', 'Extract columns from files', + 'Hello World in File', + 'Arrange code to convert km to miles', + 'Print Hello, World!', "Square of two numbers", 'Check Palindrome', 'Add 3 numbers', 'Reverse a string' ] questions = Question.objects.filter(active=True, |