We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5320518 commit 46b1469Copy full SHA for 46b1469
styleguide_example/files/tests/flows/test_direct_upload.py
@@ -1,4 +1,7 @@
1
from django.test import TestCase
2
+from django.urls import reverse
3
+
4
+from rest_framework.test import APIClient
5
6
7
class DirectUploadApiTests(TestCase):
@@ -7,3 +10,15 @@ class DirectUploadApiTests(TestCase):
10
8
11
1. A start-upload-finish cycle, where we patch the presign generation with local upload storage.
9
12
"""
13
+ def setUp(self):
14
+ self.client = APIClient()
15
16
+ self.direct_upload_start_url = reverse("api:files:upload:direct:start")
17
+ self.direct_upload_finish_url = reverse("api:files:upload:direct:finish")
18
+ self.direct_upload_local_url = lambda file: reverse(
19
+ "api:files:upload:direct:local",
20
+ kwargs={"file_id": str(file.id)}
21
+ )
22
23
+ def test_direct_upload(self):
24
+ pass
0 commit comments