Skip to content

Commit 829cde0

Browse files
committed
Rename test classes to match filenames
Signed-off-by: Ari Pollak <[email protected]>
1 parent f18c809 commit 829cde0

6 files changed

+5
-5
lines changed

pytests/test_can_merge_build.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from podman_compose import normalize_service
1313

1414

15-
class TestMergeBuild(unittest.TestCase):
15+
class TestCanMergeBuild(unittest.TestCase):
1616
@parameterized.expand([
1717
({"test": "test"}, {"test": "test"}),
1818
({"build": "."}, {"build": {"context": "."}}),

pytests/test_can_merge_cmd_ent.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
test_keys = ["command", "entrypoint"]
1616

1717

18-
class TestMergeBuild(unittest.TestCase):
18+
class TestCanMergeCmdEnt(unittest.TestCase):
1919
@parameterized.expand([
2020
({"$$$": []}, {"$$$": []}),
2121
({"$$$": ["sh"]}, {"$$$": ["sh"]}),

pytests/test_compose_exec_args.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from podman_compose import compose_exec_args
77

88

9-
class TestExecArgs(unittest.TestCase):
9+
class TestComposeExecArgs(unittest.TestCase):
1010
def test_minimal(self):
1111
cnt = get_minimal_container()
1212
args = get_minimal_args()

pytests/test_compose_run_update_container_from_args.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from podman_compose import compose_run_update_container_from_args
88

99

10-
class TestRunArgs(unittest.TestCase):
10+
class TestComposeRunUpdateContainerFromArgs(unittest.TestCase):
1111
def test_minimal(self):
1212
cnt = get_minimal_container()
1313
compose = get_minimal_compose()

pytests/test_normalize_final_build.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
cwd = os.path.abspath(".")
1717

1818

19-
class TestNormalizeFullBuild(unittest.TestCase):
19+
class TestNormalizeFinalBuild(unittest.TestCase):
2020
cases_simple_normalization = [
2121
({"image": "test-image"}, {"image": "test-image"}),
2222
(

0 commit comments

Comments
 (0)