예제 #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')