summaryrefslogtreecommitdiff
path: root/openstackclient/tests/unit/api/test_compute_v2.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstackclient/tests/unit/api/test_compute_v2.py')
-rw-r--r--openstackclient/tests/unit/api/test_compute_v2.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/openstackclient/tests/unit/api/test_compute_v2.py b/openstackclient/tests/unit/api/test_compute_v2.py
index 7a30223c..22ee4899 100644
--- a/openstackclient/tests/unit/api/test_compute_v2.py
+++ b/openstackclient/tests/unit/api/test_compute_v2.py
@@ -145,6 +145,24 @@ class TestFloatingIP(TestComputeAPIv2):
self.assertEqual(self.LIST_FLOATING_IP_RESP, ret)
+class TestFloatingIPPool(TestComputeAPIv2):
+
+ LIST_FLOATING_IP_POOL_RESP = [
+ {"name": "tide"},
+ {"name": "press"},
+ ]
+
+ def test_floating_ip_pool_list(self):
+ self.requests_mock.register_uri(
+ 'GET',
+ FAKE_URL + '/os-floating-ip-pools',
+ json={'floating_ip_pools': self.LIST_FLOATING_IP_POOL_RESP},
+ status_code=200,
+ )
+ ret = self.api.floating_ip_pool_list()
+ self.assertEqual(self.LIST_FLOATING_IP_POOL_RESP, ret)
+
+
class TestNetwork(TestComputeAPIv2):
FAKE_NETWORK_RESP = {