Exemple #1
0
 def test_load_from_json(self):
     theme = themes.load_theme_from_json(json.dumps(self.theme_dict))
     assert theme.Question.mark_color in ["red", "\x1b[31m"]
     assert theme.Question.brackets_color in ["yellow", "\x1b[33m"]
     assert theme.List.selection_color in ["red", "\x1b[31m"]
     assert theme.List.selection_cursor == "->"
Exemple #2
0
 def test_load_from_json(self):
     theme = themes.load_theme_from_json(json.dumps(self.theme_dict))
     assert theme.Question.mark_color in ['red', '\x1b[31m']
     assert theme.Question.brackets_color in ['yellow', '\x1b[33m']
     assert theme.List.selection_color in ['red', '\x1b[31m']
     assert theme.List.selection_cursor == '->'
Exemple #3
0
 def test_load_from_json(self):
     theme = themes.load_theme_from_json(json.dumps(self.theme_dict))
     assert theme.Question.mark_color in ['red', '\x1b[31m']
     assert theme.Question.brackets_color in ['yellow', '\x1b[33m']
     assert theme.List.selection_color in ['red', '\x1b[31m']
     assert theme.List.selection_cursor == '->'