make add-on/app headings link to edit pages on devhub dashboard (bug 656495)

This commit is contained in:
Chris Van 2011-12-14 10:16:33 -08:00
Родитель e56634460a
Коммит e1d85c67a9
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -3,7 +3,7 @@
{% macro dev_heading(addon, amo) %}
<h3>
{% set is_complete = not addon.is_incomplete() %}
{% if is_complete %}<a href="{{ addon.get_url_path() }}">{% endif %}
{% if is_complete %}<a href="{{ addon.get_dev_url() }}">{% endif %}
<img class="icon" src="{{ addon.get_icon_url(64) }}">
{{ addon.name }}{% if is_complete %}</a>{% endif %}
</h3>

Просмотреть файл

@ -267,7 +267,7 @@ class TestDashboard(HubTest):
eq_(addon.status, amo.STATUS_PUBLIC)
doc = pq(self.client.get(self.url).content)
item = doc('.item[data-addonid=%s]' % addon.id)
assert item.find('h3 a'), 'Expected link to add-on'
eq_(item.find('h3 a').attr('href'), addon.get_dev_url())
assert item.find('p.downloads'), 'Expected weekly downloads'
assert item.find('p.users'), 'Expected ADU'
assert item.find('.price'), 'Expected price'