()
| 618 | |
| 619 | #[test] |
| 620 | fn test_parse_empty_fstring() { |
| 621 | let source = r#"f"""#; |
| 622 | let suite = parse_suite(source).unwrap(); |
| 623 | insta::assert_debug_snapshot!(suite); |
| 624 | } |
| 625 | |
| 626 | #[test] |
| 627 | fn test_fstring_parse_self_documenting_base() { |
nothing calls this directly
no test coverage detected