makes 'pending' filter the default in /moderation

This commit is contained in:
Juanjo Bazán
2015-09-04 22:38:22 +02:00
parent ded656837e
commit 4ef2ed753d
4 changed files with 10 additions and 6 deletions

View File

@@ -102,8 +102,8 @@ feature 'Moderate Comments' do
scenario "Current filter is properly highlighted" do
visit moderation_comments_path
expect(page).to_not have_link('All')
expect(page).to have_link('Pending')
expect(page).to_not have_link('Pending')
expect(page).to have_link('All')
expect(page).to have_link('Ignored')
visit moderation_comments_path(filter: 'all')
@@ -191,6 +191,8 @@ feature 'Moderate Comments' do
expect(current_path).to eq(moderation_comments_path)
click_link('Ignored')
within("#comment_#{@comment.id}") do
expect(page).to have_content('Ignored')
end