We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47e5b07 commit 6f451daCopy full SHA for 6f451da
tests/unit/config/test_config.py
@@ -16,6 +16,7 @@
16
"workflows": False,
17
},
18
"disable_elementary_version_check": True,
19
+ "disable_elementary_logo_print": True,
20
}
21
22
WORKFLOWS_CONFIG = {
@@ -62,6 +63,13 @@ def test_disable_elementary_version_check(config: Config):
62
63
== CONFIG["disable_elementary_version_check"]
64
)
65
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
+
73
74
@pytest.mark.parametrize("config", [WORKFLOWS_CONFIG], indirect=["config"])
75
def test_slack_workflows_config_get_workflows(config: Config):
0 commit comments