Skip to content

Commit 6f451da

Browse files
committed
Add tests
1 parent 47e5b07 commit 6f451da

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tests/unit/config/test_config.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"workflows": False,
1717
},
1818
"disable_elementary_version_check": True,
19+
"disable_elementary_logo_print": True,
1920
}
2021

2122
WORKFLOWS_CONFIG = {
@@ -62,6 +63,13 @@ def test_disable_elementary_version_check(config: Config):
6263
== CONFIG["disable_elementary_version_check"]
6364
)
6465

66+
@pytest.mark.parametrize("config", [CONFIG], indirect=["config"])
67+
def test_disable_elementary_logo_print(config: Config):
68+
assert (
69+
config.disable_elementary_logo_print
70+
== CONFIG["disable_elementary_logo_print"]
71+
)
72+
6573

6674
@pytest.mark.parametrize("config", [WORKFLOWS_CONFIG], indirect=["config"])
6775
def test_slack_workflows_config_get_workflows(config: Config):

0 commit comments

Comments
 (0)