Example #1
0
 def test_config_paths_user(self, conf):
     ret = (lambda x: True if x == '/fake/.config/anchor/config.json'
            else False)
     with mock.patch('os.path.isfile', ret):
         with mock.patch.dict('os.environ', {'HOME': '/fake'}):
             app.load_config()
             conf.assert_called_with('/fake/.config/anchor/config.json')
Example #2
0
 def test_config_paths_system(self, conf):
     path = os.path.join(os.environ.get('VIRTUAL_ENV', os.sep),
                         'etc/anchor/config.json')
     ret = lambda x: x == path
     with mock.patch('os.path.isfile', ret):
         app.load_config()
         conf.assert_called_with(path)
Example #3
0
 def test_config_paths_system(self, conf):
     ret = lambda x: True if x == '/etc/anchor/config.json' else False
     with mock.patch('os.path.isfile', ret):
         app.load_config()
         conf.assert_called_with('/etc/anchor/config.json')
Example #4
0
 def test_config_paths_local(self, conf):
     ret = lambda x: True if x == 'config.json' else False
     with mock.patch("os.path.isfile", ret):
         app.load_config()
         conf.assert_called_with('config.json')
Example #5
0
 def test_config_paths_env(self, conf):
     with mock.patch.dict('os.environ', {'ANCHOR_CONF': '/fake/fake'}):
         app.load_config()
         conf.assert_called_with('/fake/fake')