테스트코드

Programming/Django

테스트 주도 개발 적용해보기

테스트 주도 개발 준비 python manage.py test 아무런 테스트 미션을 주지 않아서 성공한다고 나옴. blog/test.py from django.test import TestCase # Create your tests here. class TestView(TestCase): def test_post_list(self): self.assertEqual(2, 3) 다시 실행해보면 여기서 assertEqual(2, 2)라고 하면 ok 메세지가 나온다. beautifulsoup4 설치하기 pip install beautifulsoup4 포스트 목록 페이지 테 스트하기 blog/test.py from django.test import TestCase, Client from bs4 import Bea..

한상희
'테스트코드' 태그의 글 목록