()
| 49 | |
| 50 | |
| 51 | def test_op_docs_present(): |
| 52 | assert ndd._ops._all_ops # not empty |
| 53 | for c in ndd._ops._all_ops: |
| 54 | if should_skip(c): |
| 55 | continue |
| 56 | assert len(c.__init__.__doc__) > 20, c._schema.Name() |
| 57 | assert len(c.__call__.__doc__) > 20, c._schema.Name() |
| 58 | |
| 59 | |
| 60 | def test_op_docs_no_tensor_list(): |
nothing calls this directly
no test coverage detected