FileLink: Test class can be instantiated
()
| 42 | #-------------------------- |
| 43 | |
| 44 | def test_instantiation_FileLink(): |
| 45 | """FileLink: Test class can be instantiated""" |
| 46 | fl = display.FileLink('example.txt') |
| 47 | # TODO: remove if when only Python >= 3.6 is supported |
| 48 | fl = display.FileLink(pathlib.PurePath('example.txt')) |
| 49 | |
| 50 | def test_warning_on_non_existent_path_FileLink(): |
| 51 | """FileLink: Calling _repr_html_ on non-existent files returns a warning |
nothing calls this directly
no outgoing calls
no test coverage detected