podman-compose/pytests/test_volumes.py

21 lines
536 B
Python
Raw Normal View History

# SPDX-License-Identifier: GPL-2.0
# pylint: disable=redefined-outer-name
import unittest
2022-02-26 01:10:35 +01:00
from podman_compose import parse_short_mount
class ParseShortMountTests(unittest.TestCase):
def test_multi_propagation(self):
self.assertEqual(
parse_short_mount("/foo/bar:/baz:U,Z", "/"),
{
"type": "bind",
"source": "/foo/bar",
"target": "/baz",
"bind": {
"propagation": "U,Z",
},
},
)