(self)
| 719 | self.assert_compile(~(~col), "!!! (!!! somecol)") |
| 720 | |
| 721 | def test_unary_no_ops(self): |
| 722 | assert_raises_message( |
| 723 | exc.CompileError, |
| 724 | "Unary expression has no operator or modifier", |
| 725 | UnaryExpression(literal("x")).compile, |
| 726 | ) |
| 727 | |
| 728 | def test_unary_both_ops(self): |
| 729 | assert_raises_message( |
nothing calls this directly
no test coverage detected