assert_no_link "Revoke all blocks"
end
- test "revoke all link is present for moderators when viewed user has active blocks" do
+ test "revoke all link is present and working for moderators when viewed user has active blocks" do
blocked_user = create(:user)
create(:user_block, :user => blocked_user)
sign_in_as(create(:moderator_user))
visit user_path(blocked_user)
assert_link "Revoke all blocks"
+
+ click_link "Revoke all blocks"
+ assert_title "Revoking all blocks on #{blocked_user.display_name}"
+ assert_text "Revoking all blocks on #{blocked_user.display_name}"
end
end