()
| 333 | |
| 334 | #[test] |
| 335 | fn test_config_default_ignore_patterns() { |
| 336 | let config = WatcherConfig::new("/repo"); |
| 337 | let patterns = config.ignore_patterns(); |
| 338 | assert_eq!(patterns.len(), 1); |
| 339 | assert_eq!(patterns[0], ".atomic"); |
| 340 | } |
| 341 | |
| 342 | #[test] |
| 343 | fn test_config_with_ignore_pattern() { |
nothing calls this directly
no test coverage detected