(mock_type)
| 763 | |
| 764 | expected = ["FOO", "BAR", "BAZ"] |
| 765 | def test_default(mock_type): |
| 766 | mock_instance = mock_type(self.WithAsyncIterator()) |
| 767 | self.assertEqual(run(iterate(mock_instance)), []) |
| 768 | |
| 769 | |
| 770 | def test_set_return_value(mock_type): |
nothing calls this directly
no test coverage detected