~lamont/maas/bug-1599223-2.0

« back to all changes in this revision

Viewing changes to src/provisioningserver/utils/tests/test_registry.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.mock import sentinel
 
9
 
8
10
from maastesting.testcase import MAASTestCase
9
 
from mock import sentinel
10
11
from provisioningserver.utils.registry import Registry
11
12
from provisioningserver.utils.testing import RegistryFixture
12
13