(self)
| 588 | self.assertEqual(x[0], 'foo3') |
| 589 | |
| 590 | def test_compile_time_concat_errors(self): |
| 591 | self.assertAllRaise(SyntaxError, |
| 592 | 'cannot mix bytes and nonbytes literals', |
| 593 | [r"""f'' b''""", |
| 594 | r"""b'' f''""", |
| 595 | ]) |
| 596 | |
| 597 | def test_literal(self): |
| 598 | self.assertEqual(f'', '') |
nothing calls this directly
no test coverage detected