예제 #1
0
 def test_create_with_new_path(self):
     """Creation of a default config file specifing a new path"""
     # Path does not exist before
     fname = basename(self.newpath)
     dname = dirname(self.newpath)
     # Initialize config file
     conf.init_configs(self.newpath)
     # File must exist afterwards
     self.assertTrue(isfile(self.newpath))
예제 #2
0
 def test_create_with_path(self):
     """Creation of a default config file specifing the path"""
     # File does not exist before
     files = [f for f in listdir() if f == self.newfile]
     self.assertFalse(self.newfile in files)
     # Initialize config file
     conf.init_configs(self.newfile)
     # File must exist afterwards
     files = [f for f in listdir() if f == self.newfile]
     self.assertTrue(self.newfile in files)
예제 #3
0
 def test_create_default_file(self):
     """Creation of a default config file"""
     # File does not exist before
     files = [f for f in listdir() if f == self.defaultname]
     self.assertFalse(self.defaultname in files)
     # Initialize config file
     conf.init_configs()
     # File must exist afterwards
     files = [f for f in listdir() if f == self.defaultname]
     self.assertTrue(self.defaultname in files)