aboutsummaryrefslogtreecommitdiff
path: root/test/fixtures
AgeCommit message (Collapse)Author
2010-10-15Adjusted regex to support whitespace - it was a little restrictive ↵Sebastian Thiel
previously, although there was absolutely no need for that. See http://byronimo.lighthouseapp.com/projects/51787/tickets/41-diff-regex-lib_git_diffpy-cannot-handle-paths-with-spaces
2010-06-28All tests adjusted to work with the changed internal sha representationSebastian Thiel
2010-06-02commit: redesigned revlist and commit parsing, commits are always retrieved ↵Sebastian Thiel
from their object information directly. This is faster, and resolves issues with the rev-list format and empty commit messages Adjusted many tests to go with the changes, as they were still mocked. The mock was removed if necessary and replaced by code that actually executes
2009-10-20improved IndexEntry type and added test for parsing of the stageSebastian Thiel
2009-10-20Added initial version of the index reading from file - IndexEntry interface ↵Sebastian Thiel
is to be improved though, writing needs to be implemented as well
2009-10-19implemented config class as far as necessary, one check is still failingSebastian Thiel
Added odict module to get an OrderedDict to be used in the config parser, assuring the order of sections and options does not change
2009-10-18Added frame for configuration reader involving a meta class, decorators and ↵Sebastian Thiel
tests - most of which still has to be filled out
2009-10-11mode-only change for test system - this should be in a separate repository ↵Sebastian Thiel
in fact so that changes are a little more self-contained and not depending on the actual source repository
2009-10-11fixed issue in Ref.name implementation which would not handle components ↵Sebastian Thiel
properly
2009-10-11Re-designed the tag testing - it does not use fixtures anymore but ↵Sebastian Thiel
dyamically checks the existance of tags within the repository - it basically tests the interface and checks that expected return types are actually returned
2008-12-16fixed Commit.stats retrieval for parentless commits in bare reposMichael Trier
(cherry picked from commit 88852ed7bcde4f4b18c1ae8b6fba7f3fab8e9bf5)
2008-12-16Fixed a bug with branch names omitting path components.Michael Trier
Git allows branches to be named and organized using path components, e.g using a branch called "refactoring/feature1", which gets stored under refs/heads/refactoring/feature1. The previous code omitted everything but the last path component giving the name "feature1" instead of "refactoring/feature1" for the branch. This changeset fixes that. (cherry picked from commit dc4738bc53e580754e47037e26c7eec3047aeb69)
2008-12-15Added in new properties Diff.renamed, Diff.rename_from, and Diff.rename_toMichael Trier
2008-09-02test_commit: add a testcase for parsing rev-list --bisect-all outputDavid Aguilar
This adds a testcase for Commit.list_from_string to ensure that it can properly parse the output of git rev-list --bisect-all. Signed-off-by: David Aguilar <davvid@gmail.com>
2008-07-28Avoid stripping newlines in blob data.Jelmer Vernooij
(cherry picked from commit ccca12ee26e40fb4c4df2d77154ed496144569b9)
2008-05-07initial projectMichael Trier