blob: f58405d2f77d8bb9e18d1359cdd9514db4a5e8e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# test_index.py
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
#
# This module is part of GitPython and is released under
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
from test.testlib import *
from git import *
class TestTree(TestCase):
@classmethod
def setUpAll(cls):
cls.repo = Repo(GIT_REPO)
def test_base(self):
self.fail("TODO")
|