src/cm/tests/test_history.py
author raph
Thu, 10 Dec 2009 16:41:01 +0100
changeset 47 7a64d8892f70
parent 0 40c8f766c9b8
child 145 fb5b1e6ad179
permissions -rw-r--r--
add randomness to temporary roles

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)