fix: add WuttaConfig.production()
method
This commit is contained in:
parent
cedc74e16b
commit
ae973881af
2 changed files with 24 additions and 0 deletions
|
@ -442,6 +442,16 @@ configure_logging = true
|
|||
make_engine = config.get_engine_maker()
|
||||
self.assertIs(make_engine, custom_make_engine_from_config)
|
||||
|
||||
def test_production(self):
|
||||
config = conf.WuttaConfig()
|
||||
|
||||
# false if not defined
|
||||
self.assertFalse(config.production())
|
||||
|
||||
# but config may specify
|
||||
config.setdefault('wutta.production', 'true')
|
||||
self.assertTrue(config.production())
|
||||
|
||||
|
||||
class CustomAppHandler(AppHandler):
|
||||
pass
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue