def test_set_options(self, *args): storage = get_storage(options=STORAGE_OPTIONS) self.assertEqual(storage.__module__, DEFAULT_STORAGE_PATH)
def test_set_path(self): storage = get_storage(path=FakeStorage.__module__) self.assertIsInstance(storage, FakeStorage)
def test_func(self, *args): storage = get_storage() self.assertEqual(storage.__module__, DEFAULT_STORAGE_PATH)