(self)
| 500 | ) |
| 501 | class VolumeBindTest(BaseAPIIntegrationTest): |
| 502 | def setUp(self): |
| 503 | super().setUp() |
| 504 | |
| 505 | self.mount_dest = '/mnt' |
| 506 | |
| 507 | # Get a random pathname - we don't need it to exist locally |
| 508 | self.mount_origin = tempfile.mkdtemp() |
| 509 | self.filename = 'shared.txt' |
| 510 | |
| 511 | self.run_with_volume( |
| 512 | False, |
| 513 | TEST_IMG, |
| 514 | ['touch', os.path.join(self.mount_dest, self.filename)], |
| 515 | ) |
| 516 | |
| 517 | def test_create_with_binds_rw(self): |
| 518 |
nothing calls this directly
no test coverage detected