django-categories/example/test_storages.py

11 lines
237 B
Python
Raw Permalink Normal View History

# Storages used for testing THUMBNAIL_STORAGE and THUMBNAIL_STORAGE_ALIAS
from django.core.files.storage import FileSystemStorage
class MyTestStorage(FileSystemStorage):
pass
class MyTestStorageAlias(FileSystemStorage):
pass