diff options
Diffstat (limited to 'vio')
-rw-r--r-- | vio/vio/tests/test_proxy_identity_view.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vio/vio/tests/test_proxy_identity_view.py b/vio/vio/tests/test_proxy_identity_view.py index 89143e7..f79354a 100644 --- a/vio/vio/tests/test_proxy_identity_view.py +++ b/vio/vio/tests/test_proxy_identity_view.py @@ -33,3 +33,8 @@ class TestIdentityServer(unittest.TestCase): def test_patch(self, mock_send): self.view.patch(mock.Mock(), "openstack_regionone", None) mock_send.assert_called_once() + + @mock.patch.object(BaseClient, "send") + def test_post(self, mock_send): + self.view.post(mock.Mock(), "openstack_regionone", None) + mock_send.assert_called_once() |