tests: eliminate as_user helper.

This commit is contained in:
evazion
2020-06-11 01:02:01 -05:00
parent 2d05004bef
commit 99a9149fc4
24 changed files with 84 additions and 130 deletions

View File

@@ -5,9 +5,7 @@ class DmailsControllerTest < ActionDispatch::IntegrationTest
setup do
@user = create(:user, unread_dmail_count: 1)
@unrelated_user = create(:user)
as_user do
@dmail = create(:dmail, :owner => @user)
end
@dmail = create(:dmail, owner: @user)
end
teardown do