Don't run all tests twice

Only verify that custom backend loading works with a simple test.
This commit is contained in:
Unrud 2016-08-11 00:19:28 +02:00
parent c8e8993ec2
commit 51bf95f00d

View File

@ -735,6 +735,10 @@ class TestMultiFileSystem(BaseFileSystemTest, BaseRequestsMixIn):
storage_type = "multifilesystem"
class TestCustomStorageSystem(BaseFileSystemTest, BaseRequestsMixIn):
"""Test BaseRequests on custom backend."""
storage_type = "tests.custom.storage"
class TestCustomStorageSystem(BaseFileSystemTest):
"""Test custom backend loading."""
storage_type = "tests.custom.storage"
def test_root(self):
"""A simple test to verify that the custom backend works."""
BaseRequestsMixIn.test_root(self)