summaryrefslogtreecommitdiff
path: root/yaksh/test_views.py
diff options
context:
space:
mode:
authoradityacp2020-11-03 11:32:26 +0530
committeradityacp2020-11-03 11:32:26 +0530
commiteac52e0198000d96b4c84f9fa6b63ea50cc59f1d (patch)
treebe8de9d55aa99501ef5713cfb944c4c04021b901 /yaksh/test_views.py
parent430c8d1480d897e9fc0dc328bad173642d0a2946 (diff)
downloadonline_test-eac52e0198000d96b4c84f9fa6b63ea50cc59f1d.tar.gz
online_test-eac52e0198000d96b4c84f9fa6b63ea50cc59f1d.tar.bz2
online_test-eac52e0198000d96b4c84f9fa6b63ea50cc59f1d.zip
Multiple changes
- Add tinymce editor to the question description in lesson quiz - Fix katex rendering in the lesson quiz questions - Remove unncessary preview description view function - Keep the fixed height for the lesson table of contents div
Diffstat (limited to 'yaksh/test_views.py')
-rw-r--r--yaksh/test_views.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/yaksh/test_views.py b/yaksh/test_views.py
index e7bbd91..82f456e 100644
--- a/yaksh/test_views.py
+++ b/yaksh/test_views.py
@@ -6728,20 +6728,6 @@ class TestLessons(TestCase):
self.assertEqual(response.status_code, 200)
self.assertEqual(response.context["msg"], err_msg)
- def test_preview_lesson_description(self):
- """ Test preview lesson description converted from md to html"""
- self.client.login(
- username=self.teacher.username,
- password=self.teacher_plaintext_pass
- )
- lesson = json.dumps({'description': self.lesson.description})
- response = self.client.post(
- reverse('yaksh:preview_html_text'),
- data=lesson, content_type="application/json"
- )
- self.assertEqual(response.status_code, 200)
- self.assertEqual(response.json()['data'], '<p>test description</p>')
-
class TestPost(TestCase):
def setUp(self):