(label, text, symbol_text, subscript)
| 28 | |
| 29 | @pytest.mark.parametrize('label, text, symbol_text, subscript', examples) |
| 30 | def test_with_supexpr(label, text, symbol_text, subscript): |
| 31 | assert_equal(text + '^2', Pow(Symbol(symbol_text, real=True), Integer(2))) |
| 32 | |
| 33 | |
| 34 | @pytest.mark.parametrize('label, text, symbol_text, subscript', examples) |
nothing calls this directly
no test coverage detected