python3: Switch to mox3 instead of mox

In order to transition to a python 3.x compatible world,
lets switch to mox3 which is python 3.x compatible drop-in
replacement of mox.

Change-Id: Iaa22779cd516f842c9f70828f863f90ddae0bab5
This commit is contained in:
Dirk Mueller 2014-01-16 14:31:01 +01:00
parent f5df5cb177
commit 60b6a9fe9d
3 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@
# under the License. # under the License.
import fixtures import fixtures
import mox from mox3 import mox
class MoxStubout(fixtures.Fixture): class MoxStubout(fixtures.Fixture):

View File

@ -4,7 +4,7 @@ hacking>=0.8.0,<0.9
discover discover
fixtures>=0.3.14 fixtures>=0.3.14
mock>=1.0 mock>=1.0
mox>=0.5.3 mox3>=0.7.0
python-subunit python-subunit
testrepository>=0.0.17 testrepository>=0.0.17
testscenarios>=0.4 testscenarios>=0.4

View File

@ -14,7 +14,7 @@
# under the License. # under the License.
import fixtures import fixtures
import mox from mox3 import mox
from oslo.config import cfg from oslo.config import cfg
import six import six
from stevedore import driver from stevedore import driver