# test_head.py # Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors # # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php from test.testlib import * from git import * class TestHead(TestBase): def test_base(self): for head in self.rorepo.heads: assert head.name assert "refs/heads" in head.path # END for each head @patch_object(Git, '_call_process') def test_ref_with_path_component(self, git): git.return_value = fixture('for_each_ref_with_path_component') head = self.rorepo.heads[0] assert_equal('refactoring/feature1', head.name) assert_true(git.called)