summaryrefslogtreecommitdiff
path: root/git/test/objects/lib.py
blob: e3860ba5d7f6a1a67e0eb172d0c3eaff72ad0246 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""Provide customized obhject testing facilities"""

from git.test.lib import (
                            rorepo_dir,
                            TestBase,
                            assert_equal,
                            assert_not_equal,
                            with_rw_repo,
                            StringProcessAdapter,
                        )

class TestObjectBase(TestBase):
    """Provides a default read-only repository in the rorepo member"""
    pass