(self)
| 739 | self.assert_compile(~(~col), "!!! (!!! somecol)") |
| 740 | |
| 741 | def test_unary_no_ops(self): |
| 742 | assert_raises_message( |
| 743 | exc.CompileError, |
| 744 | "Unary expression has no operator or modifier", |
| 745 | UnaryExpression(literal("x")).compile, |
| 746 | ) |
| 747 | |
| 748 | def test_unary_both_ops(self): |
| 749 | assert_raises_message( |
nothing calls this directly
no test coverage detected