diff --git a/src/utils.rs b/src/utils.rs index b0cc3dd..4a0c962 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -1422,3 +1422,28 @@ fn test_rewriting_emotes() { let output = r#"

"#; assert_eq!(rewrite_emotes(&json_input, comment_input.to_string()), output); } + +#[test] +fn test_rewriting_bullet_list() { + let input = r#"

Hi, I've bought this very same monitor and found no calibration whatsoever. I have an ICC profile that has been set up since I've installed its driver from the LG website and it works ok. I also used http://www.lagom.nl/lcd-test/ to calibrate it. After some good tinkering I've found the following settings + the color profile from the driver gets me past all the tests perfectly: +- Brightness 50 (still have to settle on this one, it's personal preference, it controls the backlight, not the colors) +- Contrast 70 (which for me was the default one) +- Picture mode Custom +- Super resolution + Off (it looks horrible anyway) +- Sharpness 50 (default one I think) +- Black level High (low messes up gray colors) +- DFC Off +- Response Time Middle (personal preference, https://www.blurbusters.com/ show horrible overdrive with it on high) +- Freesync doesn't matter +- Black stabilizer 50 +- Gamma setting on 0 +- Color Temp Medium +How`s your monitor by the way? Any IPS bleed whatsoever? I either got lucky or the panel is pretty good, 0 bleed for me, just the usual IPS glow. How about the pixels? I see the pixels even at one meter away, especially on Microsoft Edge's icon for example, the blue background is just blocky, don't know why.

+
"#; +let output = r#"

Hi, I've bought this very same monitor and found no calibration whatsoever. I have an ICC profile that has been set up since I've installed its driver from the LG website and it works ok. I also used http://www.lagom.nl/lcd-test/ to calibrate it. After some good tinkering I've found the following settings + the color profile from the driver gets me past all the tests perfectly: +

+How`s your monitor by the way? Any IPS bleed whatsoever? I either got lucky or the panel is pretty good, 0 bleed for me, just the usual IPS glow. How about the pixels? I see the pixels even at one meter away, especially on Microsoft Edge's icon for example, the blue background is just blocky, don't know why.

+
"#; + + assert_eq!(render_bullet_lists(input), output); +} \ No newline at end of file