~jml/pkgme/0.4.1

« back to all changes in this revision

Viewing changes to pkgme/tests/test_main.py

  • Committer: Tarmac
  • Author(s): Jonathan Lange
  • Date: 2012-09-04 15:27:39 UTC
  • mfrom: (136.4.25 imports-and-tempdir)
  • Revision ID: tarmac-20120904152739-lvhce4cmr06ot2e0
[r=jml] Deprecate TempdirFixture. Use treeshape 0.2.1 instead.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
from testtools import TestCase
2
2
 
3
 
from pkgme import __version__
4
 
from pkgme.backend import (
 
3
from .. import __version__
 
4
from ..backend import (
5
5
    EXTERNAL_BACKEND_PATHS,
6
6
    StaticBackend,
7
7
    )
8
 
from pkgme.bin.main import get_version_info
9
 
from pkgme.testing import StaticLoaderFixture
 
8
from ..bin.main import get_version_info
 
9
from ..testing import StaticLoaderFixture
10
10
 
11
11
 
12
12
class TestVersionInfo(TestCase):