summaryrefslogtreecommitdiff
path: root/keystoneclient/tests/functional/test_cli.py
Commit message (Collapse)AuthorAgeFilesLines
* Stop using .keys() on dicts where not neededBrant Knudson2015-08-061-2/+2
| | | | | | | | Iterating over a dict results in the keys. Using the 'in' operator on a dict checks if it's a key. Change-Id: I6affbfa1a79a9e8c0b5b304078a7a8e4e792eecd
* Import functional CLI tests from tempestJamie Lennox2015-02-261-0/+143
These are mostly unmodified other than: - fixing up the imports to work in the keystoneclient directories. - Setting the timeout value to 15 (the tempest default) as we don't have a CONF file to make it configurable. Take from tempest Commit: d3a8c7778217cceb84d995f1509e68bb8d7a403f Change-Id: Id2a4300b7c0a53b2da2f62c07a0ffb71798908b6 Implements: bp functional-testing