Opened 17 years ago
Closed 17 years ago
#10041 closed (fixed)
Form tests are set to upload files to '/'
| Reported by: | Marty Alchin | Owned by: | Marty Alchin |
|---|---|---|---|
| Component: | Forms | Version: | dev |
| Severity: | Keywords: | ||
| Cc: | Triage Stage: | Unreviewed | |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
The tests in tests/regressiontests/forms/models.py include a FileModel that's currently configured with upload_to='/' . Because of the changes in [8244], this is no longer allowed unless MEDIA_ROOT is also set to '/' , which is highly unlikely to be the case. Currently, the test doesn't attempt to save the file, so this doesn't cause a failure, but with the work on model validation, the behavior present in this test will cause the file to be saved, which does introduce a failure into the test suite.
Attachments (1)
Change History (2)
by , 17 years ago
| Attachment: | 10041.diff added |
|---|
comment:1 by , 17 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
Updated the test to use a temporary directory, like other tests currently do.