summaryrefslogtreecommitdiff
path: root/test/git/test_remote.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed decorator issue that would cause a function to be passed even though ↵Sebastian Thiel2009-10-221-14/+13
| | | | | | there is a default argument. This feels inconsistent as the 'argument passer' wrapper function can be called with a function or a string as first argument depending on whether the client code was explicitly passing an argument or not. That ... sucks. Now test for that case specifically and fail with a proper assertion error. I don't like it, but what can I do ... . Remote tests adjusted to use rw repositories instead. More tests to follow, and many api methods are to be implemented now these things can be tested properly.
* remote: Added fetch, pull, push methods to the interface to make these ↵Sebastian Thiel2009-10-211-2/+5
| | | | operations more convenient, like repo.remotes.origin.fetch
* Implemneted IterableLists for refs, commits and remote objects including ↵Sebastian Thiel2009-10-191-0/+1
| | | | simple tests
* repo.remote method addedSebastian Thiel2009-10-191-0/+1
| | | | CHANGES updated to carry information about remotes and config
* remote: added tests for creation and removal, finishing the remote interfaceSebastian Thiel2009-10-191-2/+17
|
* remote: base tests succeed nowSebastian Thiel2009-10-191-1/+6
|
* Added configuration access including tests to remoteSebastian Thiel2009-10-191-2/+23
| | | | | config: fixed issue that would cause it to abort reading if the file did not exist - this is valid now Test does not work as the configuration parsing does not work as expected - this must be fixed first
* Added remote module and test cases - about to implement remote option handlingSebastian Thiel2009-10-191-0/+48