Django使用ImageField进行模型测试

11 浏览
0 Comments

Django使用ImageField进行模型测试

我需要测试我的Django应用程序中的Photo模型。如何使用测试图像文件来模拟ImageField?

tests.py

class PhotoTestCase(TestCase):
    def test_add_photo(self):
        newPhoto = Photo()
        newPhoto.image = # ??????
        newPhoto.save()
        self.assertEqual(Photo.objects.count(), 1)

0