Skip to content

Commit deab965

Browse files
committed
adds test to python config reader
1 parent 23c5ed6 commit deab965

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

tests/test_config.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ def test_onenterprise_returns_true_on_enterprise(self):
163163
config = Config(env)
164164

165165
self.assertTrue(config.on_enterprise())
166+
self.assertTrue(config.on_dedicated())
166167

167168
def test_onenterprise_returns_false_on_standard(self):
168169

@@ -171,6 +172,7 @@ def test_onenterprise_returns_false_on_standard(self):
171172
config = Config(env)
172173

173174
self.assertFalse(config.on_enterprise())
175+
self.assertFalse(config.on_dedicated())
174176

175177
def test_onproduction_on_enterprise_prod_is_true(self):
176178

0 commit comments

Comments
 (0)