diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-06 01:00:12 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-06 01:00:12 +0200 |
commit | b72e2704022d889f116e49abf3e1e5d3e3192d3b (patch) | |
tree | 65d2f5835a4853e72eb4b3cb5beb1b26aabcba36 /test/git/async/test_graph.py | |
parent | ab59f78341f1dd188aaf4c30526f6295c63438b1 (diff) | |
download | gitpython-b72e2704022d889f116e49abf3e1e5d3e3192d3b.tar.gz |
Improved pool design and started rough implementation, top down to learn while going. Tests will be written soon for verification, its still quite theoretical
Diffstat (limited to 'test/git/async/test_graph.py')
-rw-r--r-- | test/git/async/test_graph.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/git/async/test_graph.py b/test/git/async/test_graph.py new file mode 100644 index 00000000..18d6997c --- /dev/null +++ b/test/git/async/test_graph.py @@ -0,0 +1,10 @@ +"""Channel testing""" +from test.testlib import * +from git.async.graph import * + +import time + +class TestGraph(TestBase): + + def test_base(self): + pass |