RelatedField
- hyperlinkrelatedfield
- slugrelatedfield
- stringrelatedfield
Validation
alidators = [
UniqueTogetherValidator(
queryset=Vote.objects.all(),
fields=['question', 'voter']
)
]
Testing
- 테스트를 통해 코드를 더 attractive 하게 한다
- 팀으로 협업하는 데에 도움
Testing SErializers
Testing views
- 응답이 200
- Question에 Choice가 잘 나오는지 확인
- [ 로그인 했을때, 안했을 떄 ]
- 요청했을 때 나오는 목록, Response 가 200, Choice가 잘 받아오는지를 확인하기