aboutsummaryrefslogtreecommitdiff
path: root/git/test/db
AgeCommit message (Collapse)Author
2014-09-29test_fetch_info error, FETCH_HEAD uses tabsMaximiliano Curia
2014-07-25Autopep8 fixes with maximum line length 120Craig Northway
2014-02-10Basic fixes to get tests back on track. Of course there is much more work to ↵Sebastian Thiel
be done here
2014-02-09tabs to 4 spaces - overall state of this branch is desolate, but fixable. ↵Sebastian Thiel
Needs plenty of work
2011-07-18Fixed consecutive lines with same blame info not appearing in blame.Mark Nevill
This fixes a bug when parsing blame -p output: Full commit info headers only appear for the first line from a particular commit, but other lines were ignored as the blame info dict was reset after each line. This patch handles both multiple consecutive lines from a commit and interleaved lines from multiple commits. Added real test to verify blame works against the actual commit, not only a mock of what was produced by blame in old git releases
2011-07-08Added basic frame for pygit2 - it just needs some basic methods to be ↵Sebastian Thiel
implemented now - depending on the performance, it might actually receive some more work
2011-07-07Fixed submodule related issues once again - is it ever going to end ?Sebastian Thiel
2011-07-07Initial version of the DulwichType inheritance. For now, it inherits ↵Sebastian Thiel
everything from the existing implementation, but one by one things can be reimplmented to use dulwich. It also shows that py 2.6 is quite plagued from its new feature, which is actually a bug, as objects inability to accept any args makes mixins hard to use ...
2011-07-07Added auto-skip mixin metacls, some serious brainfuck, if the required ↵Sebastian Thiel
module was not found. Its actually a nice mix between decorators which are class types, and a mixin as a metaclass, which applies said decorator. The InstanceDecorator wouldn't actually be needed, but it adds flexibility. Maybe it should be removed ...
2011-07-06Added basis for initial dulwich integration. Many basic issues should ↵Sebastian Thiel
surface while integrating this
2011-07-04Fetch info can now deal much better with non-default ref specs, see #23, ↵Sebastian Thiel
#24, #25
2011-06-07First run in order to fix the remote handling. Cleaned up interfaces and ↵Sebastian Thiel
figured out that the implementation really should be specific to the git command. This leaves the interface open for other implemntations which use a different way to provide feedback (as we do not make assumptions about the format of a feedback line)
2011-06-01Fixed ref-log related issue in the test suite to assure it will not give ↵Sebastian Thiel
false positives in repositories that are freshly checked out
2011-05-30Fixed remaining tests as good as possible. remote/fetch/pull and submodule ↵Sebastian Thiel
tests need some more work. Also, the tests need to be reorganized and move closer to their actual location within gitpython. Hence the refs tests go to git.test.refs, etc
2011-05-30Fixed all remaining python repository testsSebastian Thiel
2011-05-30Fixed test_loose.pySebastian Thiel
2011-05-30Fixed test_git.pySebastian Thiel
2011-05-30git cmd implementation of repository appears to work, at least this is what ↵Sebastian Thiel
the test suggests. Pure python implementation still has some trouble, but this should be very fixable
2011-05-30Fixed tests far enough to allow basic repository tests to be applied to any ↵Sebastian Thiel
of the new database types. This reduces code duplication to the mere minimum, but allows custom tests to be added on top easily and flexibly
2011-05-06replaced all gitdb strings with gitSebastian Thiel
2011-05-05Added all code from gitdb to gitpython. Next is to make it generally work. ↵Sebastian Thiel
Then the tests will need some work