()
| 23 | |
| 24 | |
| 25 | def test_factory(): |
| 26 | config = BaseConfig() |
| 27 | config.settings.update({"name": defaults.DEFAULT_SETTINGS["name"]}) |
| 28 | r = factory.committer_factory(config) |
| 29 | assert isinstance(r, BaseCommitizen) |
| 30 | |
| 31 | |
| 32 | def test_factory_fails(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…