~jml/pkgme/0.4.1

« back to all changes in this revision

Viewing changes to pkgme/tests/test_api.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:
5
5
from treeshape import HasFileTree
6
6
 
7
7
from .. import write_packaging
8
 
from pkgme.api import write_packaging_info
9
 
from pkgme.backend import StaticBackend
10
 
from pkgme.info_elements import (
 
8
from ..api import write_packaging_info
 
9
from ..backend import StaticBackend
 
10
from ..info_elements import (
11
11
    Architecture,
12
12
    Description,
13
13
    Maintainer,
14
14
    PackageName,
15
15
    Version,
16
16
    )
17
 
from pkgme.package_files import Control, DEBIAN_DIR
18
 
from pkgme.project_info import DictInfo
19
 
from pkgme.testing import (
 
17
from ..package_files import Control, DEBIAN_DIR
 
18
from ..project_info import DictInfo
 
19
from ..testing import (
20
20
    ControlSourceStanzaHasField,
21
21
    StaticLoaderFixture,
22
22
    )