AssertionError: ' ' != 'Blog' - + Blog ---------------------------------------------------------------------- Ran 2 tests in 0.031s FAILED (failures=2) Destroying test database for alias 'default'...
테스트시 오류가 뜬다. 타이틀이 제대로 반영이 안됐기 때문이다.
title도 제대로 반영이 될 수 있도록 수정하기
blog/templates/blog/base.html
<head> <metacharset="UTF-8" /> <!-- title이 없는 경우는 Blog를 내보내고 있는 경우는 그것으로 대체한다. --> <title>{% block title %}Blog{% endblock %}</title>