def test_should_work(self): result = Git.pull(src=self.root_dir) self.assertTrue(result)
def test_with_track_should_change_the_branch(self): result = Git.checkout_track(branch='origin/master', src=self.root_dir) self.assertFalse(result)
def setUp(self): super().setUp() result = Git.clone(self.repo_url, self.root_dir) self.assertTrue(result)
def test_when_do_checkout_wiht_brnach_should_change_branch(self): result = Git.checkout(branch='origin/master', src=self.root_dir) self.assertTrue(result)
def test_when_do_checkout_wihtout_brnach_should_restore_files(self): result = Git.checkout(src=self.root_dir) self.assertTrue(result)
def setUp(self): super().setUp() result = Git.clone(self.repo_url, self.root_dir)
def test_when_clone_without_destiny_should_use_current_path(self): cd(self.root_dir) result = Git.clone(self.repo_url) self.assertTrue(result) self.assertTrue((self.root_dir + 'chibi_command').exists)
def test_when_clone_with_destiny_should_doe_in_that_place(self): result = Git.clone(self.repo_url, self.root_dir) self.assertTrue(result) self.assertTrue(list(self.root_dir.ls()))