diff options
| author | Jannis Leidel | 2013-12-09 17:42:04 +0100 | 
|---|---|---|
| committer | Jannis Leidel | 2013-12-09 17:42:04 +0100 | 
| commit | e75309b712537f3ee53005bf6330057c9640be21 (patch) | |
| tree | e83b9943c1cf4ee53754922629417468bfcaa153 /tests/settings.py | |
| parent | 2359b2e61d4f6018049042b3213a91af2b4db9fc (diff) | |
| download | django-debug-toolbar-e75309b712537f3ee53005bf6330057c9640be21.tar.bz2 | |
Another pass over the staticfiles panel.
- adds some docstrings
- adds some basic tests
- adds the staticfiles panel to the default list of panels
- fixed a pluralization bug in the template
- refactored some things into own methods for easier testing
Diffstat (limited to 'tests/settings.py')
| -rw-r--r-- | tests/settings.py | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/tests/settings.py b/tests/settings.py index 24e0cd4..9ff9fb6 100644 --- a/tests/settings.py +++ b/tests/settings.py @@ -40,6 +40,8 @@ ROOT_URLCONF = 'tests.urls'  STATIC_URL = '/static/' +STATICFILES_DIRS = [os.path.join(BASE_DIR, 'tests', 'additional_static')] +  # Cache and database | 
