Add tests for providers and update install script

This commit is contained in:
Evan Cordell 2017-05-23 15:43:21 -04:00
parent 0c05958739
commit 20da91d879
7 changed files with 64 additions and 10 deletions

View file

@ -90,6 +90,6 @@ class TestConfigProvider(BaseProvider):
self._config['SUPER_USERS'] = ['devtable']
self.files = {}
def get_volume_path(self, directory, file):
return os.path.join(directory, file)
def get_volume_path(self, directory, filename):
return os.path.join(directory, filename)