From bc8f1191a3befd1051bd676df630b2fa005fecf0 Mon Sep 17 00:00:00 2001 From: Clayton Walker Date: Wed, 1 Feb 2023 15:19:44 -0700 Subject: Add check to test bare repo --- test/test_base.py | 1 + 1 file changed, 1 insertion(+) 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): -- cgit v1.2.1