## Summary #59

Merged
parkel merged 1 commits from issue-55-writable-test-state into master 2026-05-23 01:07:26 +02:00
Showing only changes of commit a6d6468da8 - Show all commits

View File

@@ -133,7 +133,8 @@ class DjangoConfigSourceTests(TestCase):
) )
HostConfig.objects.create(host="web-01", address="web-01.example.test") HostConfig.objects.create(host="web-01", address="web-01.example.test")
cfg = DjangoConfigSource().effective_config_for_host("web-01") with override_settings(POBSYNC_HOME=str(Path(tmp) / "home")):
cfg = DjangoConfigSource().effective_config_for_host("web-01")
self.assertIn(f"-oIdentityFile={identity_file}", cfg["ssh"]["options"]) self.assertIn(f"-oIdentityFile={identity_file}", cfg["ssh"]["options"])
self.assertEqual(cfg["ssh_credential"]["storage"], "filesystem") self.assertEqual(cfg["ssh_credential"]["storage"], "filesystem")