~ubuntu-branches/ubuntu/vivid/openstack-trove/vivid

« back to all changes in this revision

Viewing changes to trove/tests/unittests/guestagent/test_mongodb_manager.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Chuck Short, James Page
  • Date: 2015-03-30 11:22:26 UTC
  • mfrom: (1.1.15)
  • Revision ID: package-import@ubuntu.com-20150330112226-op8vdoaqypjn9ghs
Tags: 2015.1~b3-0ubuntu1
[ Chuck Short ]
* New upstream release.
  - d/control: Align with upstream dependencies.
  - d/p/fix-requirements.patch: Rebased
  - d/p/patch-default-config-file.patch: Rebased

[ James Page ]
* d/rules,control: Tweak unit test execution, add subunit to BD's.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
from trove.common import utils
21
21
from trove.common.context import TroveContext
22
22
from trove.guestagent import volume
23
 
from trove.guestagent.datastore.mongodb import service as mongo_service
24
 
from trove.guestagent.datastore.mongodb import manager as mongo_manager
 
23
from trove.guestagent.datastore.experimental.mongodb import (
 
24
    service as mongo_service)
 
25
from trove.guestagent.datastore.experimental.mongodb import (
 
26
    manager as mongo_manager)
25
27
from trove.guestagent.volume import VolumeDevice
26
28
 
27
29