()
| 17 | } |
| 18 | |
| 19 | async fn load_happy_config() -> Result<CommitBoostConfig> { |
| 20 | let path = PathBuf::from("./data/configs/pbs.happy.toml"); |
| 21 | let config = CommitBoostConfig::from_file(&path)?; |
| 22 | config.validate().await?; |
| 23 | |
| 24 | Ok(config) |
| 25 | } |
| 26 | |
| 27 | #[tokio::test] |
| 28 | async fn test_load_pbs_happy() -> Result<()> { |
no test coverage detected