~jeremychang/linaro-image-tools/android-boottarball

« back to all changes in this revision

Viewing changes to linaro_image_tools/hwpack/testing.py

  • Committer: Loïc Minier
  • Date: 2011-03-23 22:25:10 UTC
  • mto: This revision was merged to the branch mainline in revision 301.
  • Revision ID: lool@dooz.org-20110323222510-z0pg5cp5cid4qhcf
Shuffle modules to be under the same hierarchy:
- linaro_media_create -> linaro_image_tools/media_create
- hwpack -> linaro_image_tools.hwpack
- tests -> linaro_image_tools.tests
this will notably give us a place to share code between
linaro_image_tools.media_create and .hwpack.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
from testtools import TestCase
36
36
from testtools.matchers import Annotate, Equals, Matcher, Mismatch
37
37
 
38
 
from hwpack.better_tarfile import writeable_tarfile
39
 
from hwpack.tarfile_matchers import TarfileHasFile
40
 
from hwpack.packages import get_packages_file, FetchedPackage
 
38
from linaro_image_tools.hwpack.better_tarfile import writeable_tarfile
 
39
from linaro_image_tools.hwpack.tarfile_matchers import TarfileHasFile
 
40
from linaro_image_tools.hwpack.packages import (
 
41
    get_packages_file,
 
42
    FetchedPackage,
 
43
    )
41
44
 
42
45
 
43
46
@contextmanager