()
| 575 | |
| 576 | #[test] |
| 577 | fn test_parse_fstring() { |
| 578 | let source = r#"f"{a}{ b }{{foo}}""#; |
| 579 | let suite = parse_suite(source).unwrap(); |
| 580 | insta::assert_debug_snapshot!(suite); |
| 581 | } |
| 582 | |
| 583 | #[test] |
| 584 | fn test_parse_fstring_nested_spec() { |
nothing calls this directly
no test coverage detected