| Conditions | 1 |
| Total Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | import nose.tools as nt |
||
| 15 | def test_read_document_folder_junk(): |
||
| 16 | documents = read_document_folder( |
||
| 17 | '{}/test_data_folder_files_junk'.format(test_data_path), |
||
| 18 | content_field="abstract") |
||
| 19 | nt.assert_true(solution_document_folder == next(iter(documents))['abstract']) |
||
| 20 | |||
| 31 | content_field='theTank')) |
||
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.