1 2 3 4 5 6 7
#[tokio::test] async fn load_config(){ use crate::config::Config; let _: Config = Config::new("config.toml".to_string()); assert!(true) }