(command_validator, example_file)
| 135 | @pytest.mark.filterwarnings('ignore::DeprecationWarning') |
| 136 | @pytest.mark.parametrize("example_file", RST_DOC_EXAMPLES) |
| 137 | def test_rst_doc_examples(command_validator, example_file): |
| 138 | verify_has_only_ascii_chars(example_file) |
| 139 | verify_is_valid_rst(example_file) |
| 140 | verify_cli_commands_valid(example_file, command_validator) |
| 141 | verify_no_http_links(example_file) |
| 142 | |
| 143 | |
| 144 | def verify_no_http_links(filename): |
nothing calls this directly
no test coverage detected