removes tag count

This commit is contained in:
rgarcia
2016-01-27 14:18:40 +01:00
parent 209b6407d3
commit 5a3dc42dea
2 changed files with 4 additions and 5 deletions

View File

@@ -63,10 +63,10 @@ feature 'Tags' do
visit debates_path
within(:css, "#tag-cloud") do
expect(page.find("a:eq(1)")).to have_content("Economía (10)")
expect(page.find("a:eq(2)")).to have_content("Corrupción (5)")
expect(page.find("a:eq(3)")).to have_content("Educación (5)")
expect(page.find("a:eq(4)")).to have_content("Medio Ambiente (1)")
expect(page.find("a:eq(1)")).to have_content("Economía")
expect(page.find("a:eq(2)")).to have_content("Corrupción")
expect(page.find("a:eq(3)")).to have_content("Educación")
expect(page.find("a:eq(4)")).to have_content("Medio Ambiente")
end
end