()
| 122 | |
| 123 | |
| 124 | def test_TextExpression(): |
| 125 | exp = TextExpression('foo bar') |
| 126 | assert_equal('foo bar', exp.expression(None)) |
| 127 | assert_equal(None, exp.definition(None, ('120', ''))) |
| 128 | assert_raises(TypeError, TextExpression, 4) |
| 129 | |
| 130 | |
| 131 | def test_FunctionCall(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…