def test_copy(self): first = Timecode(500) second = first.copy() self.assertEqual(first.milliseconds(), second.milliseconds()) self.assertIsNot(first, second)