示例#1
0
 def testGetMercurial(self):
     scms = SCMFactory()
     self.assertEqual(scms.get_scm_from_type('hg').name, 'hg')
示例#2
0
 def testGetGit(self):
     scms = SCMFactory()
     self.assertEqual(scms.get_scm_from_type('git').name, 'git')
示例#3
0
 def testGetSubversion(self):
     scms = SCMFactory()
     self.assertEqual(scms.get_scm_from_type('svn').name, 'svn')