(self)
| 6 | |
| 7 | class TestNote(TestCase): |
| 8 | def test_build(self) -> None: |
| 9 | bp = ExpressionBlueprint(text='amount*2') |
| 10 | result = bp.build() |
| 11 | self.assertIsInstance(result, Expression) |
| 12 | self.assertEqual(result.text, bp.text) |
nothing calls this directly
no test coverage detected