()
| 702 | |
| 703 | #[test] |
| 704 | fn test_parse_fstring_yield_expr() { |
| 705 | let source = r#"f"{yield}""#; |
| 706 | let suite = parse_suite(source).unwrap(); |
| 707 | insta::assert_debug_snapshot!(suite); |
| 708 | } |
| 709 | |
| 710 | #[test] |
| 711 | fn test_parse_tstring() { |
nothing calls this directly
no test coverage detected