-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Implement nova get_version #619
Conversation
8e6927d
to
46e6c2e
Compare
@@ -184,6 +193,23 @@ def setUp(self): | |||
create_server(self.helper, name=self.server_name)) | |||
self.server_id = self.create_server_response_body['server']['id'] | |||
|
|||
def test_get_version_nova(self): | |||
""" | |||
Check response when listing available version of nova. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you add a citation for this that points at Nova's docs?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Benjamin91300 please reference http://developer.openstack.org/api-ref-compute-v2.1.html
Please just address the minor test doc issue and land. |
@glyph, @BenjamenMeyer: I hope it is what you expected. |
@Benjamin91300 I would add it to the handler of the response itself, not simply the test (https://github.com/rackerlabs/mimic/pull/619/files#diff-623976324cdaaa34626dd686efc298b9R34). Once that and the current merge conflict are resolved then I'll merge it as it otherwise LGTM. |
Recent novaclient versions and openstackclient require resource /compute/v2. This commit provides it.
1fe0876
to
4b78062
Compare
Recent novaclient versions and openstackclient require resource /compute/v2. This commit provides it.
👍 |
Recent novaclient versions and openstackclient require resource
/compute/v2. This commit provides it.