Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialBB ZZZ
3,738 PointsCan't pass challenge 1/2. Not sure what is worng
def test_detail_template(self): resp = self.client.get(reverse('articles:detail', kwargs={'pk': self.article.pk})) self.assertTemplateUsed(resp, 'articles/article_detail.html')
I can't seem to get past this challenge. I've checked my code and it matches what was talked about in the previous video
The error message doesn't tell much: "Bummer Try again"
Any help would be great thanks!
import datetime
from django.core.urlresolvers import reverse
from django.test import TestCase
from .models import Article, Writer
class ArticleDetailViewTestCase(TestCase):
def setUp(self):
self.writer = Writer.objects.create(
name='Kenneth Love',
email='kenneth@teamtreehouse.com',
bio='Your friendly, local Python teacher'
)
self.article = Article.objects.create(
writer=self.writer,
headline='Article 0',
content='Something about 0',
publish_date=datetime.datetime.today()
)
def test_detail_template(self):
resp = self.client.get(reverse('articles:detail', kwargs={'pk': self.article.pk}))
self.assertTemplateUsed(resp, 'articles/article_detail.html')
def test_detail_template_writer(self):
resp = self.client.get(reverse('articles:detail', kwargs={'pk': self.article.pk}))
self.assertTemplateUsed(resp, 'articles/article_detail.html')
{% extends 'base.html' %}
{% block content %}
<h1>{{ article.title }}</h1>
<time>{{ article.publish_date }}</time>
<p>By {{ article.writer.name }}</p>
{{ article.content }}
{% endblock %}
1 Answer
BB ZZZ
3,738 PointsThanks: https://teamtreehouse.com/community/django-testing-the-article-detail-view
Solved by moving reverse call into setUp