diff options
author | spisarski <s.pisarski@cablelabs.com> | 2017-06-01 12:16:50 -0600 |
---|---|---|
committer | spisarski <s.pisarski@cablelabs.com> | 2017-06-01 12:16:50 -0600 |
commit | bb14b25047aabe1712aa34c0e2796e312b0b1af4 (patch) | |
tree | 78121434dd9213e7ef59c8b2dc17a9c31bb5ca9c /docs/how-to-use | |
parent | 5718894fcfb3e44dd08435cf71d2f1094425bed5 (diff) |
Refactor keystone endpoint tests to the proper test class.
Also added documentation for those three tests.
Change-Id: I38a728ba9e258a821341621978953e0529a0c1a1
Signed-off-by: spisarski <s.pisarski@cablelabs.com>
Diffstat (limited to 'docs/how-to-use')
-rw-r--r-- | docs/how-to-use/APITests.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/how-to-use/APITests.rst b/docs/how-to-use/APITests.rst index 599325f..0a96cd3 100644 --- a/docs/how-to-use/APITests.rst +++ b/docs/how-to-use/APITests.rst @@ -46,6 +46,15 @@ keystone_utils_tests.py - KeystoneUtilsTests | test_create_project_minimal | 2 & 3 | Tests the creation of a project with minimal configuration| | | | settings via the utility functions | +----------------------------------+---------------+-----------------------------------------------------------+ +| test_get_endpoint_success | 2 & 3 | Tests to ensure that proper credentials and proper service| +| | | type can succeed | ++----------------------------------+---------------+-----------------------------------------------------------+ +| test_get_endpoint_fail_without | 2 & 3 | Tests to ensure that proper credentials and improper | +| _proper_service | | service type cannot succeed | ++----------------------------------+---------------+-----------------------------------------------------------+ +| test_get_endpoint_fail_without | 2 & 3 | Tests to ensure that improper credentials and proper | +| _proper_credentials | | service type cannot succeed | ++----------------------------------+---------------+-----------------------------------------------------------+ create_user_tests.py - CreateUserSuccessTests --------------------------------------------- |