()
| 33 | |
| 34 | |
| 35 | def test_function_docs_present(): |
| 36 | assert ndd._ops._all_functions # not empty |
| 37 | for f in ndd._ops._all_functions: |
| 38 | if should_skip(f): |
| 39 | continue |
| 40 | assert len(f.__doc__) > 20, f._schema.Name() |
| 41 | |
| 42 | |
| 43 | def test_function_docs_no_tensor_list(): |
nothing calls this directly
no test coverage detected