(self)
| 47 | self.assertEqual(set(q2), {1}) |
| 48 | |
| 49 | def test_2(self): |
| 50 | q = select(p.id for p in Person if f'{p.first_name} {p.last_name}' == 'Alexander Tischenko') |
| 51 | self.assertEqual(set(q), {1}) |
| 52 | |
| 53 | q2 = select("""p.id for p in Person if f'{p.first_name} {p.last_name}' == 'Alexander Tischenko'""") |
| 54 | self.assertEqual(set(q2), {1}) |
| 55 | |
| 56 | def test_3(self): |
| 57 | x = 'Great' |