def test_proper_error_on_missing_api_declaration(): with pytest.raises(ApiDeclarationNotFoundError) as exc: ingest_resources( {'sample_resource': 'fake/sample_resource.json'}, 'fake', ) assert 'fake/sample_resource.json' in str(exc)