src/cm/tests/test_history.py
author reno
Thu, 03 Dec 2009 15:55:39 +0100
changeset 17 a4be0b8a905d
parent 0 40c8f766c9b8
child 145 fb5b1e6ad179
permissions -rw-r--r--
bug fix : can view own comment on comment add on mod priori bug fix : client : add no-notif record when user declines it

from django.test import TestCase
from django.test.client import Client
from django.core import management

from cm.models import *

class HistoryTest(TestCase):
    fixtures = ['test_comments',]
    
    def test_revert(self):
        text = Text.objects.all()[0]
        #for i in range(1,text.get_versions_number()+1):
        text.revert_to_version(1)
        #self.assertEqual(Comment.objects.count(), 16)