From 590dc4a5e99fc1f72287d13e5ce25d1506b4e518 Mon Sep 17 00:00:00 2001 From: maheshgudi Date: Fri, 13 Jul 2018 16:48:21 +0530 Subject: Fix unit and selenium tests for simple questions --- yaksh/test_views.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'yaksh/test_views.py') diff --git a/yaksh/test_views.py b/yaksh/test_views.py index 899ed31..b71bb3e 100644 --- a/yaksh/test_views.py +++ b/yaksh/test_views.py @@ -4384,9 +4384,11 @@ class TestShowQuestions(TestCase): data={'file': questions_file, 'upload': 'upload'} ) - 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' ] @@ -4395,7 +4397,7 @@ class TestShowQuestions(TestCase): user=self.user).count() self.assertEqual(response.status_code, 200) self.assertTemplateUsed(response, 'yaksh/showquestions.html') - self.assertEqual(uploaded_ques, 9) + self.assertEqual(uploaded_ques, 11) f.close() dummy_file = SimpleUploadedFile("test.txt", b"test") response = self.client.post( -- cgit From 5dce610047070dabb1ae69b1acce4ab090d4be47 Mon Sep 17 00:00:00 2001 From: maheshgudi Date: Fri, 13 Jul 2018 16:56:29 +0530 Subject: pep8 cleanup for release v0.9 --- yaksh/test_views.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'yaksh/test_views.py') diff --git a/yaksh/test_views.py b/yaksh/test_views.py index b71bb3e..3520c61 100644 --- a/yaksh/test_views.py +++ b/yaksh/test_views.py @@ -1345,6 +1345,7 @@ class TestAddQuiz(TestCase): self.assertEqual(response.context['quizzes'][0], self.quiz) self.assertTemplateUsed(response, "yaksh/courses.html") + class TestAddAsModerator(TestCase): def setUp(self): self.client = Client() @@ -1399,6 +1400,7 @@ class TestAddAsModerator(TestCase): with self.assertRaises(Http404): add_as_moderator(self.user, 'moderator') + class TestToggleModerator(TestCase): def setUp(self): self.client = Client() @@ -1481,6 +1483,7 @@ class TestToggleModerator(TestCase): self.assertEqual(response.status_code, 404) + class TestAddTeacher(TestCase): def setUp(self): self.client = Client() @@ -2850,7 +2853,8 @@ class TestCourseDetail(TestCase): target_status_code=301) def test_send_mail_to_course_students(self): - """ Check if bulk mail is sent to multiple students enrolled in a course + """ Check if bulk mail is sent to multiple students enrolled + in a course """ self.client.login( username=self.user1.username, -- cgit