예제 #1
0
 def test_diff_is_working_properly_2(self):
     """testing if diff is working properly
     """
     self.assertEqual(
         diff('file3.03.rgb', 'file4.03.rgb'),
         [{'frames': ('3', '4'), 'start': 4, 'end': 5}]
     )
예제 #2
0
파일: test_pyseq.py 프로젝트: JCEP21/pyseq
 def test_diff_is_working_properly_2(self):
     """testing if diff is working properly
     """
     self.assertEqual(
         diff('file3.03.rgb', 'file4.03.rgb'),
         [{'frames': ('3', '4'), 'start': 4, 'end': 5}]
     )
예제 #3
0
 def test_diff_is_working_properly_1(self):
     """testing if diff is working properly
     """
     self.assertEqual(
         diff('file01_0040.rgb', 'file01_0041.rgb'),
         [{'frames': ('0040', '0041'), 'start': 7, 'end': 11}]
     )
예제 #4
0
파일: test_pyseq.py 프로젝트: JCEP21/pyseq
 def test_diff_is_working_properly_1(self):
     """testing if diff is working properly
     """
     self.assertEqual(
         diff('file01_0040.rgb', 'file01_0041.rgb'),
         [{'frames': ('0040', '0041'), 'start': 7, 'end': 11}]
     )