(self)
| 672 | assert image.id == FAKE_IMAGE_ID |
| 673 | |
| 674 | def test_diff(self): |
| 675 | client = make_fake_client() |
| 676 | container = client.containers.get(FAKE_CONTAINER_ID) |
| 677 | container.diff() |
| 678 | client.api.diff.assert_called_with(FAKE_CONTAINER_ID) |
| 679 | |
| 680 | def test_exec_run(self): |
| 681 | client = make_fake_client() |
nothing calls this directly
no test coverage detected