1 require "application_system_test_case"
3 class FollowsTest < ApplicationSystemTestCase
4 test "show message when max frienships limit is exceeded" do
5 following = create(:user)
7 sign_in_as create(:user)
9 with_settings(:max_follows_per_hour => 0) do
10 visit user_path(following)
14 assert_text "You have followed a lot of users recently"