(self)
| 41 | |
| 42 | class TestIntegrationBase: |
| 43 | def test_key_and_config(self): |
| 44 | i = StubIntegration() |
| 45 | assert i.key == "stub" |
| 46 | assert i.config["name"] == "Stub Agent" |
| 47 | assert i.registrar_config["format"] == "markdown" |
| 48 | |
| 49 | def test_options_default_empty(self): |
| 50 | assert StubIntegration.options() == [] |
nothing calls this directly
no test coverage detected