(self)
| 113 | class TestFileAPI(unittest.TestCase): |
| 114 | |
| 115 | def setUp(self): |
| 116 | self.mock = MockSession() |
| 117 | self.file = File(self.mock) |
| 118 | |
| 119 | def test_read(self): |
| 120 | self.mock.set_eval_response(True, "hello world\n") |
nothing calls this directly
no test coverage detected