(arg: &str, expected: &str)
| 263 | #[test_case("--version", "css-inline")] |
| 264 | #[test_case("-v", "css-inline")] |
| 265 | fn args(arg: &str, expected: &str) { |
| 266 | let stdout = css_inline().arg(arg).assert().success().to_string(); |
| 267 | assert!(stdout.contains(expected), "{}", stdout); |
| 268 | } |
| 269 | |
| 270 | #[test] |
| 271 | fn flag_requires_value_but_none_provided() { |