0
0
Fork 0

Fix RSpec/InferredSpecType cop (#24736)

This commit is contained in:
Matt Jankowski 2023-05-03 23:49:53 -04:00 committed by GitHub
parent 710745e16b
commit c97b611b6b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
171 changed files with 170 additions and 345 deletions

View file

@ -2,7 +2,7 @@
require 'rails_helper'
RSpec.describe Api::V1::Accounts::PinsController, type: :controller do
RSpec.describe Api::V1::Accounts::PinsController do
let(:john) { Fabricate(:user) }
let(:kevin) { Fabricate(:user) }
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: john.id, scopes: 'write:accounts') }

View file

@ -2,7 +2,7 @@
require 'rails_helper'
RSpec.describe Api::V1::Accounts::SearchController, type: :controller do
RSpec.describe Api::V1::Accounts::SearchController do
render_views
let(:user) { Fabricate(:user) }