blob: c146833d03865ed369653c1b326664dbd4e9c535 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
"""Provide customized obhject testing facilities"""
from git.test.lib import (
rorepo_dir,
TestBase,
assert_equal,
assert_not_equal,
with_rw_repo,
StringProcessAdapter,
)
from git.repo import Repo
class TestObjectBase(TestBase):
"""Provides a default read-only repository in the rorepo member"""
@classmethod
def setUpAll(cls):
cls.rorepo = Repo(rorepo_dir())
|