forked from gitpython-developers/GitPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_head.py
More file actions
26 lines (21 loc) · 725 Bytes
/
test_head.py
File metadata and controls
26 lines (21 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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(object):
def setup(self):
self.repo = Repo(GIT_REPO)
def test_base(self):
for head in self.repo.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.repo.heads[0]
assert_equal('refactoring/feature1', head.name)
assert_true(git.called)