(self)
| 825 | interp.prepare_main() |
| 826 | |
| 827 | def test_dict(self): |
| 828 | values = {'spam': 42, 'eggs': 'ham'} |
| 829 | interp = interpreters.create() |
| 830 | interp.prepare_main(values) |
| 831 | out = _run_output(interp, dedent(""" |
| 832 | print(spam, eggs) |
| 833 | """)) |
| 834 | self.assertEqual(out.strip(), '42 ham') |
| 835 | |
| 836 | def test_tuple(self): |
| 837 | values = {'spam': 42, 'eggs': 'ham'} |
nothing calls this directly
no test coverage detected