11 lines
325 B
Rust
11 lines
325 B
Rust
// file: crates/ksp-app-store-desk/tests/public_api.rs
|
|
// version: 2
|
|
|
|
//! Public API boundary test for the Store Desk scaffold.
|
|
|
|
#[test]
|
|
fn pre_002_public_surface_exposes_only_application_run_entry_point() {
|
|
let run: fn(&[std::ffi::OsString]) -> ksp_core_lib::Result<()> = ksp_app_store_desk_lib::run;
|
|
let _ = run;
|
|
}
|