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