()
| 198 | |
| 199 | #[test] |
| 200 | fn format_respects_quote_style() { |
| 201 | let source = r#".a { content: "foo"; }"#; |
| 202 | let options = FormatOptions { quote_style: Some(QuoteStyleOption::Single), ..FormatOptions::default() }; |
| 203 | let output = format_with_options(source, options).expect("format should succeed"); |
| 204 | assert!(output.contains("content:'foo'")); |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | #[derive(Default, Clone, Serialize)] |
nothing calls this directly
no test coverage detected