summaryrefslogtreecommitdiff
path: root/tests/test_sequences.py
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-07-23 22:10:40 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-07-23 22:10:40 +1000
commit3fdad9fb89d70b8d81483b646e16d20f076e0ebd (patch)
treed3a717d53f0cb67c78995e20d4ddf329fb642dce /tests/test_sequences.py
parentaa6b1516310c9022359e41280426007355da8051 (diff)
tests: Test urxvt alpha
Diffstat (limited to 'tests/test_sequences.py')
-rwxr-xr-xtests/test_sequences.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/test_sequences.py b/tests/test_sequences.py
index 19ea6e2..bd03516 100755
--- a/tests/test_sequences.py
+++ b/tests/test_sequences.py
@@ -19,6 +19,12 @@ class Testsequences(unittest.TestCase):
result = sequences.set_special(11, COLORS["special"]["background"])
self.assertEqual(result, "\033]11;#1F211E\007")
+ def test_set_special_alpha(self):
+ """> Create special escape sequence with alpha."""
+ util.Color.alpha_num = 40
+ result = sequences.set_special(11, COLORS["special"]["background"])
+ self.assertEqual(result, "\033]11;[40]#1F211E\007")
+
def test_set_color(self):
"""> Create color escape sequence."""
result = sequences.set_color(11, COLORS["colors"]["color0"])