diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-23 00:14:24 +0200 |
|---|---|---|
| committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-23 00:14:24 +0200 |
| commit | 00499d994fea6fb55a33c788f069782f917dbdd4 (patch) | |
| tree | f3de7739d34003a7356bd72769f212a47ebc8993 /test/git/test_tag.py | |
| parent | b2a14e4b96a0ffc5353733b50266b477539ef899 (diff) | |
| parent | d1bd99c0a376dec63f0f050aeb0c40664260da16 (diff) | |
| download | GitPython-00499d994fea6fb55a33c788f069782f917dbdd4.tar.gz GitPython-00499d994fea6fb55a33c788f069782f917dbdd4.zip | |
Merge branch 'symbolic_ref' into improvements
* symbolic_ref:
SymbolicReferences can now change they references safely as I think and well controlled, including test.
Adjusted tests to deal with API changes
Added SymbolicReference and HEAD type to better represent these special types of references and allow special handling
Diffstat (limited to 'test/git/test_tag.py')
| -rw-r--r-- | test/git/test_tag.py | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/test/git/test_tag.py b/test/git/test_tag.py deleted file mode 100644 index 97e0acd1..00000000 --- a/test/git/test_tag.py +++ /dev/null @@ -1,33 +0,0 @@ -# test_tag.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 mock import * -from test.testlib import * -from git import * -from git.objects.tag import TagObject - -class TestTag(TestBase): - - def test_tag_base(self): - tag_object_refs = list() - for tag in self.rorepo.tags: - assert "refs/tags" in tag.path - assert tag.name - assert isinstance( tag.commit, Commit ) - if tag.tag is not None: - tag_object_refs.append( tag ) - tagobj = tag.tag - assert isinstance( tagobj, TagObject ) - assert tagobj.tag == tag.name - assert isinstance( tagobj.tagger, Actor ) - assert isinstance( tagobj.tagged_date, int ) - assert tagobj.message - # END if we have a tag object - # END for tag in repo-tags - assert tag_object_refs - assert isinstance(self.rorepo.tags['0.1.5'], TagReference) - - |
