Пример #1
0
  def test_existing_folder_rsync_version(self):
     '''
     Tests to see if the mod properly initializes if there exists
     a folder with a '.rsync' folder inside of it.

     '''
     v("rsync_test_dir/good_dir")
Пример #2
0
 def test_existing_folder_version(self):
   '''
   Tests to see if an exception is thrown if there is not any data
   for rsync within an rsync folder.
   '''
   with self.assertRaises(ValidationException):
     v("rsync_test_dir/bad_dir_no_rsync")
Пример #3
0
 def test_nonexistant_folder(self):
   '''
   Tests to see if the mod properly sends an exception
   if given a folder that doesn't exist.
   '''
   with self.assertRaises(ValidationException):
     v("this_folder_is_not_real_hopefully")