()
| 941 | |
| 942 | #[test] |
| 943 | fn test_archive_options_should_include() { |
| 944 | let options = ArchiveOptions::new() |
| 945 | .include(&["src/*"]) |
| 946 | .exclude(&["*.log"]); |
| 947 | |
| 948 | assert!(options.should_include("src/main.rs")); |
| 949 | assert!(!options.should_include("build/output")); |
| 950 | assert!(!options.should_include("src/debug.log")); |
| 951 | } |
| 952 | |
| 953 | #[test] |
| 954 | fn test_archive_options_should_include_no_patterns() { |