Convert more 'setup do' to 'def setup' for consistency

This commit is contained in:
Tom Hughes 2016-11-09 20:33:55 +00:00
parent 2f722fc281
commit 5c9f1310b0
3 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@ class OAuthTest < ActionDispatch::IntegrationTest
include OAuth::Helper
setup do
def setup
stub_signup_requests
end

View file

@ -3,7 +3,7 @@ require "test_helper"
class UserRolesTest < ActionDispatch::IntegrationTest
fixtures :users, :user_roles
setup do
def setup
stub_signup_requests
end

View file

@ -3,7 +3,7 @@ require "test_helper"
class UserTermsSeenTest < ActionDispatch::IntegrationTest
fixtures :users
setup do
def setup
stub_signup_requests
end