pytest.mark.parametrize(('bad_input', 'exception'), (
('', ValueError),
('3', ValueError),
(None, TypeError),
(1, TypeError),
))
| 1 | """ |
| 2 | Tests related to the ``symbol`` attribute of the ABCPolyBase class. |
| 3 | """ |
| 4 |
nothing calls this directly
no outgoing calls
no test coverage detected