(self)
| 188 | |
| 189 | @contextmanager |
| 190 | def rtl(self): |
| 191 | with self.desktop_size(): |
| 192 | with override_settings(LANGUAGE_CODE=settings.LANGUAGES_BIDI[-1]): |
| 193 | yield |
| 194 | |
| 195 | @contextmanager |
| 196 | def dark(self): |
nothing calls this directly
no test coverage detected