diff --git a/tests/integration/extends_w_empty_service/__init__.py b/tests/integration/extends_w_empty_service/__init__.py new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/integration/extends_w_empty_service/__init__.py @@ -0,0 +1 @@ + diff --git a/tests/integration/test_podman_compose_extends_w_empty_service.py b/tests/integration/extends_w_empty_service/test_podman_compose_extends_w_empty_service.py similarity index 60% rename from tests/integration/test_podman_compose_extends_w_empty_service.py rename to tests/integration/extends_w_empty_service/test_podman_compose_extends_w_empty_service.py index 20c7591..cf2df86 100644 --- a/tests/integration/test_podman_compose_extends_w_empty_service.py +++ b/tests/integration/extends_w_empty_service/test_podman_compose_extends_w_empty_service.py @@ -2,6 +2,7 @@ import os import unittest +from pathlib import Path from tests.integration.test_podman_compose import podman_compose_path from tests.integration.test_podman_compose import test_path @@ -37,3 +38,26 @@ class TestComposeExtendsWithEmptyService(unittest.TestCase, RunSubprocessMixin): compose_yaml_path(), "down", ]) + + def test_podman_compose_extends_w_empty_service(self): + """ + Test that podman-compose can execute podman-compose -f up with extended File which + includes an empty service. (e.g. if the file is used as placeholder for more complex + configurations.) + """ + main_path = Path(__file__).parent.parent.parent.parent + + command_up = [ + "python3", + str(main_path.joinpath("podman_compose.py")), + "-f", + str( + main_path.joinpath( + "tests", "integration", "extends_w_empty_service", "docker-compose.yml" + ) + ), + "up", + "-d", + ] + + self.run_subprocess_assert_returncode(command_up) diff --git a/tests/integration/test_podman_compose.py b/tests/integration/test_podman_compose.py index e6cba41..6fa6b25 100644 --- a/tests/integration/test_podman_compose.py +++ b/tests/integration/test_podman_compose.py @@ -86,26 +86,3 @@ class TestPodmanCompose(unittest.TestCase, RunSubprocessMixin): # check container did not exists anymore out, _ = self.run_subprocess_assert_returncode(command_check_container) self.assertEqual(out, b'') - - def test_extends_w_empty_service(self): - """ - Test that podman-compose can execute podman-compose -f up with extended File which - includes an empty service. (e.g. if the file is used as placeholder for more complex - configurations.) - """ - main_path = Path(__file__).parent.parent.parent - - command_up = [ - "python3", - str(main_path.joinpath("podman_compose.py")), - "-f", - str( - main_path.joinpath( - "tests", "integration", "extends_w_empty_service", "docker-compose.yml" - ) - ), - "up", - "-d", - ] - - self.run_subprocess_assert_returncode(command_up)