()
| 685 | |
| 686 | #[test] |
| 687 | fn test_parse_fstring_yield_expr() { |
| 688 | let source = r#"f"{yield}""#; |
| 689 | let suite = parse_suite(source).unwrap(); |
| 690 | insta::assert_debug_snapshot!(suite); |
| 691 | } |
| 692 | |
| 693 | #[test] |
| 694 | fn test_parse_tstring() { |
nothing calls this directly
no test coverage detected