aboutsummaryrefslogtreecommitdiff
path: root/git/test/db/base.py
AgeCommit message (Collapse)Author
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-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-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-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