summaryrefslogtreecommitdiffstats
path: root/tests/units/test_0001_get_clients.py
Commit message (Collapse)AuthorAgeFilesLines
* #915: Return 400 status code in POST methods when no payload is attachedRoberto Hueso Gómez2019-09-191-1/+1
| | | | | | | If no payload is attached to method that requires a payload, then the API returns a 400 status code (following RFC 7231) instead of the previous 404. test_0001_get_clients.py is also modified to fit the new status code.
* #915: more descriptive function name in testRoberto Hueso Gómez2019-09-181-1/+1
| | | | | This test sends a POST with no body, which is illegal, use a function name that describes this.
* #915 Improve test output using unittest discoverJavier Sánchez Parra2019-07-051-0/+19
* Call the tests with python module unittest. In particular, the discover function. * Rename tests files to meet the default requirements of discover function.