diff options
Diffstat (limited to 'archaeological_finds/tests.py')
-rw-r--r-- | archaeological_finds/tests.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/archaeological_finds/tests.py b/archaeological_finds/tests.py index ae03b2ba4..876bbecb2 100644 --- a/archaeological_finds/tests.py +++ b/archaeological_finds/tests.py @@ -815,6 +815,27 @@ class FindQATest(FindInit, TestCase): base_desc_1 + u"\n" + extra_desc) +class FindHistoryTest(FindInit, TestCase): + fixtures = FIND_FIXTURES + model = models.Find + + def setUp(self): + self.create_finds(data_base={"label": u"Find 1"}, force=True) + self.create_finds(data_base={"label": u"Find 2"}, force=True) + self.username, self.password, self.user = create_superuser() + self.client = Client() + self.client.login(username=self.username, password=self.password) + + def test_m2m_history_save(self): + pass + + def test_m2m_history_display(self): + pass + + def test_m2m_history_restore(self): + pass + + class TreatmentTest(FindInit, TestCase): fixtures = FIND_FIXTURES model = models.Find |