You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
684 B
Python
26 lines
684 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.test import TestCase
|
|
|
|
from nano.faq.models import QA
|
|
from nano.faq.views import ListFAQView
|
|
|
|
class QATest(TestCase):
|
|
|
|
def test_str(self):
|
|
item = QA(question='blbl', answer='fofo')
|
|
self.assertEqual(str(item), item.question)
|
|
|
|
def test_save(self):
|
|
item = QA(question='blbl', answer='fofo')
|
|
item.save()
|
|
self.assertNotEqual(item.last_modified, None)
|
|
|
|
class ListFAQViewTest(TestCase):
|
|
|
|
def test_get_context_data(self):
|
|
view = ListFAQView()
|
|
view.object_list = None
|
|
context = view.get_context_data(object_list=None)
|
|
self.assertEqual(context['me'], 'faq')
|