()
| 657 | |
| 658 | #[test] |
| 659 | fn test_parse_fstring_not_equals() { |
| 660 | let source = r#"f"{1 != 2}""#; |
| 661 | let suite = parse_suite(source).unwrap(); |
| 662 | insta::assert_debug_snapshot!(suite); |
| 663 | } |
| 664 | |
| 665 | #[test] |
| 666 | fn test_parse_fstring_equals() { |
nothing calls this directly
no test coverage detected