(self)
| 793 | client.api.stats.assert_called_with(FAKE_CONTAINER_ID) |
| 794 | |
| 795 | def test_stop(self): |
| 796 | client = make_fake_client() |
| 797 | container = client.containers.get(FAKE_CONTAINER_ID) |
| 798 | container.stop() |
| 799 | client.api.stop.assert_called_with(FAKE_CONTAINER_ID) |
| 800 | |
| 801 | def test_top(self): |
| 802 | client = make_fake_client() |
nothing calls this directly
no test coverage detected