Я пытаюсь написать тест для URL re_path
и не могу понять. Ниже мой код. Пожалуйста, простите Puserid и Pcomment_comment_of_the_day. Я не знал, как избежать символа «меньше».
urls.py
файл:
from django.urls import path, re_path
from . import views
urlpatterns = [
re_path(r'trophy/(?P<userid>\w+)/(?P<comment_of_the_day>\w+)/$', views.commentoftheday, name='commentoftheday'),
]
tests.py
файл:
from django.test import TestCase, Client
from django.urls import reverse
class helpme(TestCase):
def test1(self):
response = self.client.get(reverse("commentoftheday"), kwargs={'userid':'bleh'})
response.status_code