summaryrefslogtreecommitdiffstats
path: root/tests/units/test_0002_post_clients.py
Commit message (Collapse)AuthorAgeFilesLines
* #915 Test malformed payload for POST /clientsRoberto Hueso Gómez2019-11-131-0/+4
| | | | | This test covers requests that do not contain 1 of the parameters in their payloads.
* #915 Extend REST API POST no payload tests to all remaining tests.Roberto Hueso Gómez2019-11-131-0/+4
| | | | | | | | | | | | | | | | | This patch extends tests for requests without any payload in the following REST API POST functions: - /clients - /wol - /shell/run - /shell/output - /session - /poweroff - /reboot - /stop - /refresh - /hardware - /software
* #915: Remove duplicated testRoberto Hueso Gómez2019-09-181-4/+0
| | | | This test is already performed in test_0001_get_clients.py
* #915 Improve test output using unittest discoverJavier Sánchez Parra2019-07-051-0/+20
* Call the tests with python module unittest. In particular, the discover function. * Rename tests files to meet the default requirements of discover function.