#![cfg(feature = "docs")]
use openlark_client::Client;
#[test]
fn docs_feature_exposes_ccm_entry() {
let client = Client::builder()
.app_id("test_app")
.app_secret("test_secret")
.build()
.expect("client should build with docs feature");
assert_eq!(client.docs.ccm.config().app_id(), "test_app");
}