예제 #1
0
파일: tests.py 프로젝트: louissobel/srt.py
 def test_copy(self):
     first = Timecode(500)
     second = first.copy()
     self.assertEqual(first.milliseconds(), second.milliseconds())
     self.assertIsNot(first, second)