def test_parse_version(self): self.assertEqual( '7', p4cache.parse_revision(TestP4Path.rev1)['p4.version'], )
def test_parse_committer(self): self.assertEqual( 'autointeg', p4cache.parse_revision(TestP4Path.rev1)['p4.committer'], )
def test_parse_time(self): self.assertEqual( '10:53:43', p4cache.parse_revision(TestP4Path.rev1)['p4.time'], )
def test_parse_date(self): self.assertEqual( '2017/01/26', p4cache.parse_revision(TestP4Path.rev1)['p4.date'], )
def test_parse_action(self): self.assertEqual( 'integrate', p4cache.parse_revision(TestP4Path.rev1)['p4.action'], )
def test_parse_change(self): self.assertEqual( '12898330', p4cache.parse_revision(TestP4Path.rev1)['p4.change'], )