~cmiller/desktopcouch/disable-stats-lp746367

« back to all changes in this revision

Viewing changes to desktopcouch/application/tests/test_local_files.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:
3
3
import os
4
4
import shutil
5
5
import tempfile
6
 
import testtools
7
6
 
8
7
from mocker import MockerTestCase
9
8
 
10
9
import desktopcouch
11
10
import desktopcouch.application.tests as test_environment
 
11
 
 
12
from desktopcouch.application.tests import TestCase
12
13
from desktopcouch.application.local_files import Context
13
14
 
14
15
# pylint: disable=W0212
15
16
 
16
17
 
17
 
class TestLocalFiles(testtools.TestCase):
 
18
class TestLocalFiles(TestCase):
18
19
    """Testing that local files returns the right things"""
19
20
 
20
21
    def setUp(self):