diff options
author | Clayton Walker <clayton.m.walker@gmail.com> | 2023-02-01 15:19:44 -0700 |
---|---|---|
committer | Clayton Walker <clayton.m.walker@gmail.com> | 2023-02-01 15:19:44 -0700 |
commit | bc8f1191a3befd1051bd676df630b2fa005fecf0 (patch) | |
tree | 92178174b63a3c479719b1c99a1d83233a936c76 | |
parent | cc71f02913eaa4c7c939bc3762342710b009c092 (diff) | |
download | gitpython-bc8f1191a3befd1051bd676df630b2fa005fecf0.tar.gz |
Add check to test bare repo
-rw-r--r-- | test/test_base.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_base.py b/test/test_base.py index ccfdc8ed..5c89fd4f 100644 --- a/test/test_base.py +++ b/test/test_base.py @@ -98,6 +98,7 @@ class TestBase(_TestBase): def test_with_bare_rw_repo(self, bare_rw_repo): assert bare_rw_repo.config_reader("repository").getboolean("core", "bare") assert osp.isfile(osp.join(bare_rw_repo.git_dir, "HEAD")) + assert osp.isdir(bare_rw_repo.working_dir) @with_rw_repo("0.1.6") def test_with_rw_repo(self, rw_repo): |