~cmiller/desktopcouch/service-exits-properly

« back to all changes in this revision

Viewing changes to desktopcouch/recordtypes/tests/test_tasks.py

  • Committer: Tarmac
  • Author(s): natalia.bidart at canonical, Natalia B. Bidart
  • Date: 2011-01-06 13:02:31 UTC
  • mfrom: (248.1.2 remove-testtools)
  • Revision ID: tarmac-20110106130231-ktkkjsh8x09z8cuu
Removed testtools, replaced with unittest.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
"""Tests for the Tasks record classes"""
21
21
 
22
 
import testtools
 
22
from unittest import TestCase
23
23
 
24
24
from desktopcouch.recordtypes.tasks import Task, TASK_RECORD_TYPE
25
25
 
26
26
 
27
 
class TestTaskRecord(testtools.TestCase):
 
27
class TestTaskRecord(TestCase):
28
28
    """Test the Task Record object."""
29
29
 
30
30
    def test_task_record(self):