(self)
| 172 | self.assertEqual(selector_str(rule), ".className") |
| 173 | |
| 174 | def test_selector_str_id(self): |
| 175 | (rule,) = parse_stylesheet("#identifier {}") |
| 176 | self.assertEqual(selector_str(rule), "#identifier") |
| 177 | |
| 178 | def test_selector_str_with_brackets(self): |
| 179 | (rule,) = parse_stylesheet('input[type="text"] {}') |
nothing calls this directly
no test coverage detected