()
| 601 | |
| 602 | #[test] |
| 603 | fn test_parse_empty_fstring() { |
| 604 | let source = r#"f"""#; |
| 605 | let suite = parse_suite(source).unwrap(); |
| 606 | insta::assert_debug_snapshot!(suite); |
| 607 | } |
| 608 | |
| 609 | #[test] |
| 610 | fn test_fstring_parse_self_documenting_base() { |
nothing calls this directly
no test coverage detected