(self)
| 168 | self.assertEqual(selector_str(rule), "html") |
| 169 | |
| 170 | def test_selector_str_classname(self): |
| 171 | (rule,) = parse_stylesheet(".className {}") |
| 172 | self.assertEqual(selector_str(rule), ".className") |
| 173 | |
| 174 | def test_selector_str_id(self): |
| 175 | (rule,) = parse_stylesheet("#identifier {}") |
nothing calls this directly
no test coverage detected