()
| 2841 | |
| 2842 | #[test] |
| 2843 | fn test_cleanup_empty_styles_removes_empty() { |
| 2844 | let (result, _) = cleanup_empty_styles("{red|}", 999); |
| 2845 | assert_eq!(result, ""); // cursor not inside, remove it |
| 2846 | } |
| 2847 | |
| 2848 | #[test] |
| 2849 | fn test_cleanup_empty_styles_keeps_if_cursor_inside() { |
nothing calls this directly
no test coverage detected