We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
current test code looks to comfirm only response parsing
For example, in test_niftycloud.py
# create success def test_create_instance_success(self): with mock.patch('requests.post', self.mockRequestsPostRunInstance): with mock.patch('niftycloud.get_instance_state', self.mockGetInstanceState16): self.assertEqual( (True, 16, 'created'), niftycloud.create_instance(self.mockModule) )
test code of create_instance method not confirm following things
create_instance
requests.post
I think it should be separate test case in accordance to test purpose
The text was updated successfully, but these errors were encountered:
No branches or pull requests
current test code looks to comfirm only response parsing
For example, in test_niftycloud.py
test code of
create_instance
method not confirm following thingsrequests.post
method for API authentication (e.g. signature) ?I think it should be separate test case in accordance to test purpose
The text was updated successfully, but these errors were encountered: