mirror of
https://github.com/containers/podman-compose.git
synced 2024-11-23 00:13:25 +01:00
762318093c
Black removes the burden of manual code formatting and is by now considered the standard Python formatting tool. https://black.readthedocs.io/en/stable/ Format all Python code with black. GitHub linting action is updated to ensure all files are formatted with Black. Signed-off-by: Piotr Husiatyński <phusiatynski@gmail.com>
21 lines
462 B
Python
21 lines
462 B
Python
import pytest
|
|
|
|
from podman_compose import parse_short_mount
|
|
|
|
|
|
@pytest.fixture
|
|
def multi_propagation_mount_str():
|
|
return "/foo/bar:/baz:U,Z"
|
|
|
|
|
|
def test_parse_short_mount_multi_propagation(multi_propagation_mount_str):
|
|
expected = {
|
|
"type": "bind",
|
|
"source": "/foo/bar",
|
|
"target": "/baz",
|
|
"bind": {
|
|
"propagation": "U,Z",
|
|
},
|
|
}
|
|
assert parse_short_mount(multi_propagation_mount_str, "/") == expected
|