| Conditions | 1 |
| Total Lines | 8 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | import logging |
||
| 28 | @staticmethod |
||
| 29 | def test_checkPSCIDExist(): |
||
| 30 | response_success, token = LORIS_query.login() |
||
| 31 | assert response_success |
||
| 32 | #assert len(token) == 256 # token should always be 256 char long |
||
| 33 | response_success, exist = LORIS_candidates.checkPSCIDExist(token, "CNBP0010001") |
||
| 34 | assert response_success |
||
| 35 | assert not exist |
||
| 36 | |||
| 49 |
The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:
If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.