diff options
| author | Jannis Leidel <jannis@leidel.info> | 2011-01-08 10:03:27 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2011-01-08 10:03:27 +0000 |
| commit | 19ab52f77fef0edb1e4101e7f8acaa093d3ca16c (patch) | |
| tree | a6d04906a3dbbed7a652eff436409ffbb4a6a96a /tests/regressiontests/staticfiles_tests/storage.py | |
| parent | a3894945b647c3e07acdd35af1104739a93938a2 (diff) | |
Fixed #15035 -- Fixed collectstatic management command to work with non-local storage backends correctly. Also refactored a bit code smell.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15154 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/staticfiles_tests/storage.py')
| -rw-r--r-- | tests/regressiontests/staticfiles_tests/storage.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/regressiontests/staticfiles_tests/storage.py b/tests/regressiontests/staticfiles_tests/storage.py new file mode 100644 index 0000000000..cfe1e13bdb --- /dev/null +++ b/tests/regressiontests/staticfiles_tests/storage.py @@ -0,0 +1,19 @@ +from datetime import datetime +from django.core.files import storage + +class DummyStorage(storage.Storage): + """ + A storage class that does implement modified_time() but raises + NotImplementedError when calling + """ + def _save(self, name, content): + return 'dummy' + + def delete(self, name): + pass + + def exists(self, name): + pass + + def modified_time(self, name): + return datetime.date(1970, 1, 1) |
