diff options
author | monster <monster@ydb.tech> | 2022-07-07 14:41:37 +0300 |
---|---|---|
committer | monster <monster@ydb.tech> | 2022-07-07 14:41:37 +0300 |
commit | 06e5c21a835c0e923506c4ff27929f34e00761c2 (patch) | |
tree | 75efcbc6854ef9bd476eb8bf00cc5c900da436a2 /contrib/python/prompt-toolkit/py3/tests/test_style_transformation.py | |
parent | 03f024c4412e3aa613bb543cf1660176320ba8f4 (diff) | |
download | ydb-06e5c21a835c0e923506c4ff27929f34e00761c2.tar.gz |
fix ya.make
Diffstat (limited to 'contrib/python/prompt-toolkit/py3/tests/test_style_transformation.py')
-rw-r--r-- | contrib/python/prompt-toolkit/py3/tests/test_style_transformation.py | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/contrib/python/prompt-toolkit/py3/tests/test_style_transformation.py b/contrib/python/prompt-toolkit/py3/tests/test_style_transformation.py deleted file mode 100644 index 1193649e346..00000000000 --- a/contrib/python/prompt-toolkit/py3/tests/test_style_transformation.py +++ /dev/null @@ -1,49 +0,0 @@ -import pytest - -from prompt_toolkit.styles import AdjustBrightnessStyleTransformation, Attrs - - -@pytest.fixture -def default_attrs(): - return Attrs( - color="", - bgcolor="", - bold=False, - underline=False, - strike=False, - italic=False, - blink=False, - reverse=False, - hidden=False, - ) - - -def test_adjust_brightness_style_transformation(default_attrs): - tr = AdjustBrightnessStyleTransformation(0.5, 1.0) - - attrs = tr.transform_attrs(default_attrs._replace(color="ff0000")) - assert attrs.color == "ff7f7f" - - attrs = tr.transform_attrs(default_attrs._replace(color="00ffaa")) - assert attrs.color == "7fffd4" - - # When a background color is given, nothing should change. - attrs = tr.transform_attrs(default_attrs._replace(color="00ffaa", bgcolor="white")) - assert attrs.color == "00ffaa" - - # Test ansi colors. - attrs = tr.transform_attrs(default_attrs._replace(color="ansiblue")) - assert attrs.color == "6666ff" - - # Test 'ansidefault'. This shouldn't change. - attrs = tr.transform_attrs(default_attrs._replace(color="ansidefault")) - assert attrs.color == "ansidefault" - - # When 0 and 1 are given, don't do any style transformation. - tr2 = AdjustBrightnessStyleTransformation(0, 1) - - attrs = tr2.transform_attrs(default_attrs._replace(color="ansiblue")) - assert attrs.color == "ansiblue" - - attrs = tr2.transform_attrs(default_attrs._replace(color="00ffaa")) - assert attrs.color == "00ffaa" |