summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-09-30 11:13:09 +0000
committerGerrit Code Review <review@openstack.org>2016-09-30 11:13:09 +0000
commit8031cd25d4226023ba3f67fda5fdc268aa90f557 (patch)
tree9512f502c330556a3c856c75f485c2fcd7d15ec7
parent15069ef50e609dca769d6a50f6af92b2c8211238 (diff)
parent3e9749149b8a589ce4bc1a4911934336b427eaeb (diff)
downloadpython-openstackclient-8031cd25d4226023ba3f67fda5fdc268aa90f557.tar.gz
Merge "Replace 'MagicMock' with 'Mock'"
-rw-r--r--openstackclient/tests/unit/network/v2/fakes.py22
-rw-r--r--openstackclient/tests/unit/network/v2/test_network_segment.py4
2 files changed, 13 insertions, 13 deletions
diff --git a/openstackclient/tests/unit/network/v2/fakes.py b/openstackclient/tests/unit/network/v2/fakes.py
index d7ebd0bc..cea00282 100644
--- a/openstackclient/tests/unit/network/v2/fakes.py
+++ b/openstackclient/tests/unit/network/v2/fakes.py
@@ -122,7 +122,7 @@ class FakeAddressScope(object):
@staticmethod
def get_address_scopes(address_scopes=None, count=2):
- """Get an iterable MagicMock object with a list of faked address scopes.
+ """Get an iterable Mock object with a list of faked address scopes.
If address scopes list is provided, then initialize the Mock object
with the list. Otherwise create one.
@@ -331,7 +331,7 @@ class FakeNetwork(object):
@staticmethod
def get_networks(networks=None, count=2):
- """Get an iterable MagicMock object with a list of faked networks.
+ """Get an iterable Mock object with a list of faked networks.
If networks list is provided, then initialize the Mock object with the
list. Otherwise create one.
@@ -478,7 +478,7 @@ class FakePort(object):
@staticmethod
def get_ports(ports=None, count=2):
- """Get an iterable MagicMock object with a list of faked ports.
+ """Get an iterable Mock object with a list of faked ports.
If ports list is provided, then initialize the Mock object with the
list. Otherwise create one.
@@ -545,7 +545,7 @@ class FakeNetworkAgent(object):
@staticmethod
def get_network_agents(agents=None, count=2):
- """Get an iterable MagicMock object with a list of faked network agents.
+ """Get an iterable Mock object with a list of faked network agents.
If network agents list is provided, then initialize the Mock object
with the list. Otherwise create one.
@@ -615,7 +615,7 @@ class FakeNetworkRBAC(object):
@staticmethod
def get_network_rbacs(rbac_policies=None, count=2):
- """Get an iterable MagicMock object with a list of faked rbac policies.
+ """Get an iterable Mock object with a list of faked rbac policies.
If rbac policies list is provided, then initialize the Mock object
with the list. Otherwise create one.
@@ -694,7 +694,7 @@ class FakeRouter(object):
@staticmethod
def get_routers(routers=None, count=2):
- """Get an iterable MagicMock object with a list of faked routers.
+ """Get an iterable Mock object with a list of faked routers.
If routers list is provided, then initialize the Mock object with the
list. Otherwise create one.
@@ -767,7 +767,7 @@ class FakeSecurityGroup(object):
@staticmethod
def get_security_groups(security_groups=None, count=2):
- """Get an iterable MagicMock object with a list of faked security groups.
+ """Get an iterable Mock object with a list of faked security groups.
If security groups list is provided, then initialize the Mock object
with the list. Otherwise create one.
@@ -845,7 +845,7 @@ class FakeSecurityGroupRule(object):
@staticmethod
def get_security_group_rules(security_group_rules=None, count=2):
- """Get an iterable MagicMock object with a list of faked security group rules.
+ """Get an iterable Mock object with a list of faked security group rules.
If security group rules list is provided, then initialize the Mock
object with the list. Otherwise create one.
@@ -930,7 +930,7 @@ class FakeSubnet(object):
@staticmethod
def get_subnets(subnets=None, count=2):
- """Get an iterable MagicMock object with a list of faked subnets.
+ """Get an iterable Mock object with a list of faked subnets.
If subnets list is provided, then initialize the Mock object
with the list. Otherwise create one.
@@ -1008,7 +1008,7 @@ class FakeFloatingIP(object):
@staticmethod
def get_floating_ips(floating_ips=None, count=2):
- """Get an iterable MagicMock object with a list of faked floating ips.
+ """Get an iterable Mock object with a list of faked floating ips.
If floating_ips list is provided, then initialize the Mock object
with the list. Otherwise create one.
@@ -1091,7 +1091,7 @@ class FakeSubnetPool(object):
@staticmethod
def get_subnet_pools(subnet_pools=None, count=2):
- """Get an iterable MagicMock object with a list of faked subnet pools.
+ """Get an iterable Mock object with a list of faked subnet pools.
If subnet_pools list is provided, then initialize the Mock object
with the list. Otherwise create one.
diff --git a/openstackclient/tests/unit/network/v2/test_network_segment.py b/openstackclient/tests/unit/network/v2/test_network_segment.py
index b9f0c3cf..0639766d 100644
--- a/openstackclient/tests/unit/network/v2/test_network_segment.py
+++ b/openstackclient/tests/unit/network/v2/test_network_segment.py
@@ -163,7 +163,7 @@ class TestDeleteNetworkSegment(TestNetworkSegment):
super(TestDeleteNetworkSegment, self).setUp()
self.network.delete_segment = mock.Mock(return_value=None)
- self.network.find_segment = mock.MagicMock(
+ self.network.find_segment = mock.Mock(
side_effect=self._network_segments
)
@@ -220,7 +220,7 @@ class TestDeleteNetworkSegment(TestNetworkSegment):
find_mock_result = [self._network_segments[0],
exceptions.CommandError]
self.network.find_segment = (
- mock.MagicMock(side_effect=find_mock_result)
+ mock.Mock(side_effect=find_mock_result)
)
try: