summaryrefslogtreecommitdiff
path: root/test/fixtures
Commit message (Collapse)AuthorAgeFilesLines
* tests: move to root dirKonrad Weihmann2020-07-1270-0/+9384
| | | | | | | | | This should ensure that tests are NOT packaged into release package by setuptools, as tests are development only + fixtures after moving Signed-off-by: Konrad Weihmann <kweihmann@outlook.com>
* Revert moving tests out of 'git' folder, related to #1030Sebastian Thiel2020-07-1270-9384/+0
|
* tests: move to root dirKonrad Weihmann2020-07-1270-0/+9384
| | | | | | | | | This should ensure that tests are NOT packaged into release package by setuptools, as tests are development only + fixtures after moving Signed-off-by: Konrad Weihmann <kweihmann@outlook.com>
* Moved everything into the git subdirectory - some tests still need to be ↵Sebastian Thiel2010-11-2540-3634/+0
| | | | adjusted
* Implemented reflog reading and writingSebastian Thiel2010-11-237-0/+594
|
* Adjusted regex to support whitespace - it was a little restrictive ↵Sebastian Thiel2010-10-151-2/+2
| | | | | | 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
* All tests adjusted to work with the changed internal sha representationSebastian Thiel2010-06-281-1/+1
|
* commit: redesigned revlist and commit parsing, commits are always retrieved ↵Sebastian Thiel2010-06-021-24/+3
| | | | | | 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
* improved IndexEntry type and added test for parsing of the stageSebastian Thiel2009-10-201-0/+0
|
* Added initial version of the index reading from file - IndexEntry interface ↵Sebastian Thiel2009-10-201-0/+0
| | | | is to be improved though, writing needs to be implemented as well
* implemented config class as far as necessary, one check is still failingSebastian Thiel2009-10-191-0/+24
| | | | Added odict module to get an OrderedDict to be used in the config parser, assuring the order of sections and options does not change
* Added frame for configuration reader involving a meta class, decorators and ↵Sebastian Thiel2009-10-181-0/+23
| | | | tests - most of which still has to be filled out
* mode-only change for test system - this should be in a separate repository ↵Sebastian Thiel2009-10-111-0/+0
| | | | in fact so that changes are a little more self-contained and not depending on the actual source repository
* fixed issue in Ref.name implementation which would not handle components ↵Sebastian Thiel2009-10-111-0/+0
| | | | properly
* Re-designed the tag testing - it does not use fixtures anymore but ↵Sebastian Thiel2009-10-112-0/+0
| | | | dyamically checks the existance of tags within the repository - it basically tests the interface and checks that expected return types are actually returned
* fixed Commit.stats retrieval for parentless commits in bare reposMichael Trier2008-12-161-0/+3
| | | | (cherry picked from commit 88852ed7bcde4f4b18c1ae8b6fba7f3fab8e9bf5)
* Fixed a bug with branch names omitting path components.Michael Trier2008-12-161-0/+0
| | | | | | | | | 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)
* Added in new properties Diff.renamed, Diff.rename_from, and Diff.rename_toMichael Trier2008-12-151-0/+12
|
* test_commit: add a testcase for parsing rev-list --bisect-all outputDavid Aguilar2008-09-021-0/+51
| | | | | | | 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>
* Avoid stripping newlines in blob data.Jelmer Vernooij2008-07-281-0/+1
| | | | (cherry picked from commit ccca12ee26e40fb4c4df2d77154ed496144569b9)
* initial projectMichael Trier2008-05-0726-0/+2947