Fix bug when default config paths do not exist
when fetching initial path listing, to create config object. should only affect situations where default file paths are needed, i.e. when caller does not specify
This commit is contained in:
parent
cd79f949d2
commit
6777f02e06
3 changed files with 10 additions and 0 deletions
|
@ -437,6 +437,12 @@ winsvc.RattailFileMonitor = /path/to/other/file
|
|||
files = conf.get_config_paths(files=[myconf], winsvc='RattailFileMonitor')
|
||||
self.assertEqual(files, ['/path/to/other/file'])
|
||||
|
||||
def test_nonexistent_default_files(self):
|
||||
files = conf.get_config_paths(files=None,
|
||||
env_files_name='IGNORE_THIS',
|
||||
default_files=['/this/does/not/exist'])
|
||||
self.assertEqual(files, [])
|
||||
|
||||
|
||||
class TestMakeConfig(FileConfigTestCase):
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue