()
| 525 | |
| 526 | #[test] |
| 527 | fn test_matches_prefix_exact() { |
| 528 | let opts = WorkflowOptions::new().with_prefix("src/main.rs"); |
| 529 | |
| 530 | assert!(opts.matches_prefix("src/main.rs")); |
| 531 | assert!(!opts.matches_prefix("src/lib.rs")); |
| 532 | } |
| 533 | |
| 534 | #[test] |
| 535 | fn test_exceeds_max_size_with_limit() { |
nothing calls this directly
no test coverage detected