(source: &str)
| 539 | const UNIX_EOL: &str = "\n"; |
| 540 | |
| 541 | fn parse_suite(source: &str) -> Result<Suite, ParseError> { |
| 542 | parse_module(source).map(Parsed::into_suite) |
| 543 | } |
| 544 | |
| 545 | fn nested_format_spec(prefix: char, depth: usize) -> String { |
| 546 | let mut replacement_field = String::from("{spec}"); |