()
| 589 | |
| 590 | #[test] |
| 591 | fn test_parse_fstring() { |
| 592 | let source = r#"f"{a}{ b }{{foo}}""#; |
| 593 | let suite = parse_suite(source).unwrap(); |
| 594 | insta::assert_debug_snapshot!(suite); |
| 595 | } |
| 596 | |
| 597 | #[test] |
| 598 | fn test_parse_fstring_nested_spec() { |
nothing calls this directly
no test coverage detected