(self)
| 6 | |
| 7 | class TestCommon: |
| 8 | def test__import_class(self): |
| 9 | doc_cls = _import_class("Document") |
| 10 | assert doc_cls is Document |
| 11 | |
| 12 | def test__import_class_raise_if_not_known(self): |
| 13 | with pytest.raises(ValueError): |
nothing calls this directly
no test coverage detected