관리 메뉴

Silver Library (Archived)

[Django] How to test something - user's viewpoint 본문

Personal DB/Unclassified record

[Django] How to test something - user's viewpoint

Chesed Kim 2021. 1. 19. 00:30
반응형

How to test something from user's viewpoint?

 

Purpose is clear, to let user allow enjoying all features as intended.

 

def github_callback(request):

    code = request.GET.get("code")

    print(request.GET)

    pass

 

That print allows the developer to see and refer the terminal message.

Literally, this is an essential method to test out whether it works as intended or not.

'Personal DB > Unclassified record' 카테고리의 다른 글

DJango - individual project record (good news)  (0) 2021.02.01
Django - Unsolved error (solved)  (0) 2021.01.20
Django - debug note (2) SMTP? < Unicode??  (0) 2021.01.14
django - cleaned_data  (0) 2021.01.12
Django - all about URL  (0) 2021.01.12