(self)
| 184 | self.assertEqual(selector_str(rule), "input[type=text]") |
| 185 | |
| 186 | def test_selector_str_with_comma(self): |
| 187 | (rule,) = parse_stylesheet("a, button {}") |
| 188 | self.assertEqual(selector_str(rule), "a, button") |
| 189 | |
| 190 | def test_selector_str_with_comma_and_newline(self): |
| 191 | (rule,) = parse_stylesheet("a,\nbutton {}") |
nothing calls this directly
no test coverage detected