We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23c5ed6 commit deab965Copy full SHA for deab965
1 file changed
tests/test_config.py
@@ -163,6 +163,7 @@ def test_onenterprise_returns_true_on_enterprise(self):
163
config = Config(env)
164
165
self.assertTrue(config.on_enterprise())
166
+ self.assertTrue(config.on_dedicated())
167
168
def test_onenterprise_returns_false_on_standard(self):
169
@@ -171,6 +172,7 @@ def test_onenterprise_returns_false_on_standard(self):
171
172
173
174
self.assertFalse(config.on_enterprise())
175
+ self.assertFalse(config.on_dedicated())
176
177
def test_onproduction_on_enterprise_prod_is_true(self):
178
0 commit comments