()
| 365 | |
| 366 | #[test] |
| 367 | fn test_config_clone() { |
| 368 | let config = WatcherConfig::new("/repo").with_ignore_pattern("extra"); |
| 369 | let cloned = config.clone(); |
| 370 | |
| 371 | assert_eq!(cloned.repo_root(), config.repo_root()); |
| 372 | assert_eq!(cloned.ignore_patterns(), config.ignore_patterns()); |
| 373 | } |
| 374 | |
| 375 | #[test] |
| 376 | fn test_config_debug() { |
nothing calls this directly
no test coverage detected