()
| 75 | |
| 76 | #[test] |
| 77 | fn test_changed_flag_accuracy() { |
| 78 | let input = "body { width: 10px; }"; |
| 79 | let (_, changed) = minify(input, CssMinifierFeature::all_bits()); |
| 80 | assert!(!changed, "Should report no changes when no optimizations apply"); |
| 81 | } |
| 82 | } |