()
| 823 | |
| 824 | |
| 825 | def test_get_backend_none(): |
| 826 | a, b = np.zeros((2, 3)), None |
| 827 | nx = get_backend(a, b) |
| 828 | assert str(nx) == "numpy" |
| 829 | with pytest.raises(ValueError): |
| 830 | get_backend(None, None) |
nothing calls this directly
no test coverage detected