()
| 574 | |
| 575 | #[tokio::test] |
| 576 | async fn test_watcher_active_after_begin() { |
| 577 | let dir = TempDir::new().unwrap(); |
| 578 | let mut watcher = FallbackWatcher::new(make_config(&dir)); |
| 579 | |
| 580 | watcher.begin_turn("sess-1").await.unwrap(); |
| 581 | assert!(watcher.is_active()); |
| 582 | } |
| 583 | |
| 584 | #[tokio::test] |
| 585 | async fn test_watcher_inactive_after_end() { |
nothing calls this directly
no test coverage detected