(self)
| 213 | self.assertNotEqual(keyword_1._color, keyword_2._color) |
| 214 | |
| 215 | def test_string_to_print(self): |
| 216 | text = "INFO" |
| 217 | self.keyword = Keyword(text) |
| 218 | |
| 219 | self.assertEqual( |
| 220 | colorama.Fore.GREEN |
| 221 | + text.lower() |
| 222 | + colorama.Style.RESET_ALL |
| 223 | + ": 0", |
| 224 | self.keyword.get_string_to_print(), |
| 225 | ) |
| 226 | |
| 227 | def test_add_color_to_string(self): |
| 228 | text = "INFO" |
nothing calls this directly
no test coverage detected