~lamont/maas/bug-1599223-2.0

« back to all changes in this revision

Viewing changes to src/provisioningserver/import_images/tests/test_helpers.py

  • Committer: LaMont Jones
  • Date: 2016-05-12 19:07:37 UTC
  • mfrom: (5017 maas)
  • mto: This revision was merged to the branch mainline in revision 5021.
  • Revision ID: lamont@canonical.com-20160512190737-00g34satnuo0tk8v
mergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
__all__ = []
7
7
 
 
8
from unittest import mock
 
9
 
8
10
from maastesting.factory import factory
9
11
from maastesting.matchers import MockCalledOnceWith
10
12
from maastesting.testcase import MAASTestCase
11
 
import mock
12
13
from provisioningserver.import_images import helpers
13
14
from simplestreams.util import SignatureMissingException
14
15