Exemplo n.º 1
0
 def test_branch_remote_remote(self):
     cmd = cmd_branch()
     cmd.run(self.get_url('branch'), self.get_url('remote'))
     self.assertEqual(2, len(self.connections))
Exemplo n.º 2
0
 def test_branch_remote_local(self):
     cmd = cmd_branch()
     cmd.run(self.get_url('branch'), 'local')
     self.assertEqual(1, len(self.connections))
Exemplo n.º 3
0
 def test_branch_remote_local(self):
     cmd = cmd_branch()
     cmd.run(self.get_url('branch'), 'local')
     self.assertEquals(1, len(self.connections))
Exemplo n.º 4
0
 def test_branch_remote_remote(self):
     cmd = cmd_branch()
     cmd.run(self.get_url('branch'), self.get_url('remote'))
     self.assertEquals(2, len(self.connections))
Exemplo n.º 5
0
 def test_branch_local_remote(self):
     cmd = cmd_branch()
     cmd.run('branch', self.get_url('remote'))
     self.assertEquals(1, len(self.connections))