The code:
{{{
self.assertContains(response, "No polls are available.")
}}}
should remove the latest ".", because the response is without "."
{{{
self.assertContains(response, "No polls are available")
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/22214>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* status: new => closed
* needs_docs: => 0
* resolution: => invalid
* needs_tests: => 0
* needs_better_patch: => 0
Comment:
Hi,
Unless I'm mistaken, the `index` view being tested is the one defined in
part 3 [1] and that one does include a period in the template:
{{{
{% if latest_poll_list %}
<ul>
{% for poll in latest_poll_list %}
<li><a href="/polls/{{ poll.id }}/">{{ poll.question }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>No polls are available.</p>
{% endif %}
}}}
I'll mark this as `invalid`. Feel free to reopen if I've misunderstodd
your report.
Thanks.
[1] https://docs.djangoproject.com/en/1.6/intro/tutorial03/#write-views-
that-actually-do-something
--
Ticket URL: <https://code.djangoproject.com/ticket/22214#comment:1>