mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-08-16 17:21:00 +02:00
tests: Implement all arguments.
This commit is contained in:
@ -21,16 +21,16 @@ class Testsequences(unittest.TestCase):
|
||||
|
||||
def test_set_special_alpha(self):
|
||||
"""> Create special escape sequence with alpha."""
|
||||
util.Color.alpha_num = 40
|
||||
util.Color.alpha_num = 99
|
||||
result = sequences.set_special(11, COLORS["special"]["background"])
|
||||
self.assertEqual(result, "\033]11;[40]#1F211E\007")
|
||||
self.assertEqual(result, "\033]11;[99]#1F211E\007")
|
||||
|
||||
def test_set_color(self):
|
||||
"""> Create color escape sequence."""
|
||||
result = sequences.set_color(11, COLORS["colors"]["color0"])
|
||||
self.assertEqual(result, "\033]4;11;#1F211E\007")
|
||||
|
||||
def test_send_srquences(self):
|
||||
def test_send_sequences(self):
|
||||
"""> Send sequences to all open terminals."""
|
||||
with unittest.mock.patch('sys.stdout', new=io.StringIO()) as fake_out:
|
||||
sequences.send(COLORS, False)
|
||||
|
Reference in New Issue
Block a user