()
| 674 | |
| 675 | #[test] |
| 676 | fn test_parse_fstring_not_equals() { |
| 677 | let source = r#"f"{1 != 2}""#; |
| 678 | let suite = parse_suite(source).unwrap(); |
| 679 | insta::assert_debug_snapshot!(suite); |
| 680 | } |
| 681 | |
| 682 | #[test] |
| 683 | fn test_parse_fstring_equals() { |
nothing calls this directly
no test coverage detected