Inflearn brand logo image

Inflearn Community Q&A

park47874366's profile image
park47874366

asked

Introduction to Web Development for Python Users A to Z Django + Bootstrap

Writing Post Detail Page Test Code

assertion error

Written on

·

454

0

post_detail.html

test.py

cmder >> python manage.py test

assertion 오류라고해서 혹시 오타가 났나

수업 코드랑 계속 비교해봤는데도

문제점을 찾지 못해서 질문합니다!

test.py 코드의 82번째 줄과 post_detail.html의 

작성은 잘못된 게 아닌 것 같은데 어떻게하면 오류를 고칠 수 

있을까요?

djangobootstrappython

Answer 3

0

sungyonglee님의 프로필 이미지
sungyonglee
Instructor

get_absolute_url에서 슬래쉬가 빠져있습니다. 

return '/blog/{}/'.format(self.pk)

test에서도 같은 실수가 있습니다. 

0

park47874366님의 프로필 이미지
park47874366
Questioner

models.py

urls.py

두 파일 캡쳐본 첨부합니다!

0

sungyonglee님의 프로필 이미지
sungyonglee
Instructor

models.py와 urls.py에 문제가 있을지도 모릅니다. 두 파일을 보여주세요. 

park47874366's profile image
park47874366

asked

Ask a question