My model declaration is:
class Media(models.Model):
    binary = models.FileField(upload_to=resolve_file_path)
    mimetype = models.CharField(max_length=64, editable=False)
    media_for = models.ForeignKey(Entry)

Now if I in my testcase create an instance of Media, how/what do I
assign to the 'binary' attribute?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to