()
| 681 | |
| 682 | #[test] |
| 683 | fn test_parse_fstring_equals() { |
| 684 | let source = r#"f"{42 == 42}""#; |
| 685 | let suite = parse_suite(source).unwrap(); |
| 686 | insta::assert_debug_snapshot!(suite); |
| 687 | } |
| 688 | |
| 689 | #[test] |
| 690 | fn test_parse_fstring_self_doc_prec_space() { |
nothing calls this directly
no test coverage detected