(self)
| 185 | desc, msg="description for '%s' is '%s'" % (key, desc)) |
| 186 | |
| 187 | def test_get_options(self): |
| 188 | for key in sorted(backends): |
| 189 | for (test_id, name) in backends[key].get_options(): |
| 190 | self.assertIsString( |
| 191 | test_id, msg='%s.%s is not a string' % (key, test_id)) |
| 192 | self.assertIsString(name) |
| 193 | |
| 194 | def test_get_commands(self): |
| 195 | for key in sorted(backends): |
nothing calls this directly
no test coverage detected