1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-08-01 18:18:31 +00:00

Rename backends from None to none

All other backend names are lower case.
This commit is contained in:
Unrud 2017-05-31 12:01:39 +02:00
parent edaf21561d
commit eba6621f17
4 changed files with 16 additions and 16 deletions

View file

@ -102,16 +102,16 @@ class TestBaseAuthRequests(BaseTest):
self._test_rights("authenticated", "tmp", "/other", "w", 207)
def test_none(self):
self._test_rights("None", "", "/", "r", 207)
self._test_rights("None", "", "/", "w", 207)
self._test_rights("None", "", "/tmp", "r", 207)
self._test_rights("None", "", "/tmp", "w", 207)
self._test_rights("None", "tmp", "/", "r", 207)
self._test_rights("None", "tmp", "/", "w", 207)
self._test_rights("None", "tmp", "/tmp", "r", 207)
self._test_rights("None", "tmp", "/tmp", "w", 207)
self._test_rights("None", "tmp", "/other", "r", 207)
self._test_rights("None", "tmp", "/other", "w", 207)
self._test_rights("none", "", "/", "r", 207)
self._test_rights("none", "", "/", "w", 207)
self._test_rights("none", "", "/tmp", "r", 207)
self._test_rights("none", "", "/tmp", "w", 207)
self._test_rights("none", "tmp", "/", "r", 207)
self._test_rights("none", "tmp", "/", "w", 207)
self._test_rights("none", "tmp", "/tmp", "r", 207)
self._test_rights("none", "tmp", "/tmp", "w", 207)
self._test_rights("none", "tmp", "/other", "r", 207)
self._test_rights("none", "tmp", "/other", "w", 207)
def test_from_file(self):
rights_file_path = os.path.join(self.colpath, "rights")