summaryrefslogtreecommitdiff
path: root/keystoneclient/tests/unit/test_http.py
Commit message (Collapse)AuthorAgeFilesLines
* Rename requests mock object in testingJamie Lennox2015-03-181-7/+7
| | | | | | | | | | | | | | It has been mentioned a number of times that the self.requests naming for the requests_mock object is confusing between whether you are actually sending a request or are mocking a request. Rename all entries of the requests object to requests_mock. This cleans up a couple of entries where the older register_uri format was being used in favour of using the HTTP method as the requests_mock method. Change-Id: I315085b4088130b510f9dbd696011d983598372c
* Move tests to the unit subdirectoryJamie Lennox2015-02-111-0/+208
Move all the existing tests to the unit/ subdirectory. This gives us some room to add a functional/ directory later with other tests. Change-Id: I0fb8d5b628eb8ee1f35f05f42d0c0ac9f285e8c3 Implements: functional-testing