(self)
| 80 | """ |
| 81 | |
| 82 | def test_nonstructured_ufunc(self) -> None: |
| 83 | yaml_str = f"""\ |
| 84 | - {self.binop_out} |
| 85 | ufunc_inner_loop: |
| 86 | Generic: binop (Bool) |
| 87 | """ |
| 88 | self.assertParseErrorInline( |
| 89 | yaml_str, |
| 90 | """\ |
| 91 | ufunc must be structured""", |
| 92 | ) |
| 93 | |
| 94 | def test_overlapping_ufunc_and_dispatch(self) -> None: |
| 95 | yaml_str = f"""\ |
nothing calls this directly
no test coverage detected