Updates admin site customization specs

This commit is contained in:
decabeza
2018-07-19 20:09:42 +02:00
parent bb05f86156
commit 3fee56e8fe
3 changed files with 4 additions and 4 deletions

View File

@@ -32,7 +32,7 @@
<td><%= link_to "#{content_block.name} (#{content_block.locale})", edit_admin_site_customization_content_block_path(content_block) %></td> <td><%= link_to "#{content_block.name} (#{content_block.locale})", edit_admin_site_customization_content_block_path(content_block) %></td>
<td><%= content_block.body.html_safe %></td> <td><%= content_block.body.html_safe %></td>
<td> <td>
<%= button_to t("admin.site_customization.content_blocks.index.delete"), <%= link_to t("admin.site_customization.content_blocks.index.delete"),
admin_site_customization_content_block_path(content_block), admin_site_customization_content_block_path(content_block),
method: :delete, class: "button hollow alert" %> method: :delete, class: "button hollow alert" %>
</td> </td>

View File

@@ -88,7 +88,7 @@ feature "Admin custom content blocks" do
expect(page).to have_content("#{block.name} (#{block.locale})") expect(page).to have_content("#{block.name} (#{block.locale})")
expect(page).to have_content(block.body) expect(page).to have_content(block.body)
click_button "Delete block" click_link "Delete block"
expect(page).not_to have_content("#{block.name} (#{block.locale})") expect(page).not_to have_content("#{block.name} (#{block.locale})")
expect(page).not_to have_content(block.body) expect(page).not_to have_content(block.body)
@@ -98,7 +98,7 @@ feature "Admin custom content blocks" do
block = create(:site_customization_content_block) block = create(:site_customization_content_block)
visit edit_admin_site_customization_content_block_path(block) visit edit_admin_site_customization_content_block_path(block)
click_button "Delete block" click_link "Delete block"
expect(page).not_to have_content("#{block.name} (#{block.locale})") expect(page).not_to have_content("#{block.name} (#{block.locale})")
expect(page).not_to have_content(block.body) expect(page).not_to have_content(block.body)

View File

@@ -63,7 +63,7 @@ feature "Admin custom pages" do
custom_page = create(:site_customization_page, title: "An example custom page") custom_page = create(:site_customization_page, title: "An example custom page")
visit edit_admin_site_customization_page_path(custom_page) visit edit_admin_site_customization_page_path(custom_page)
click_button "Delete page" click_link "Delete page"
expect(page).not_to have_content("An example custom page") expect(page).not_to have_content("An example custom page")
end end