Example #1
0
 def test_verification_different_files(self):
     test_response = convert.identity_verification(
         './test_area/same_files_check1.txt',
         './test_area/same_files_check2.txt')
     true_response = 'different'
     self.assertEqual(test_response, true_response)
Example #2
0
 def test_verification_different_files(self):
     test_response = convert.identity_verification('./test_area/same_files_check1.txt',
                                                   './test_area/same_files_check2.txt')
     true_response = 'different'
     self.assertEqual(test_response, true_response)
Example #3
0
 def test_verification_same_files(self):
     test_response = convert.identity_verification(
         'test_area/same_files_check1.txt',
         'test_area/same_files_check1.txt')
     true_response = 'same'
     self.assertEqual(test_response, true_response)
Example #4
0
 def test_verification_same_files(self):
     test_response = convert.identity_verification('test_area/same_files_check1.txt',
                                                   'test_area/same_files_check1.txt')
     true_response = 'same'
     self.assertEqual(test_response, true_response)