Use expect
for admin/
controllers (#33686)
This commit is contained in:
parent
59384282ed
commit
65d9171c7d
57 changed files with 551 additions and 41 deletions
|
@ -0,0 +1,16 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe 'Admin Trends Links Preview Card Providers' do
|
||||
describe 'POST /admin/trends/links/publishers/batch' do
|
||||
before { sign_in Fabricate(:admin_user) }
|
||||
|
||||
it 'gracefully handles invalid nested params' do
|
||||
post batch_admin_trends_links_preview_card_providers_path(trends_preview_card_provider_batch: 'invalid')
|
||||
|
||||
expect(response)
|
||||
.to redirect_to(admin_trends_links_preview_card_providers_path)
|
||||
end
|
||||
end
|
||||
end
|
16
spec/requests/admin/trends/links_spec.rb
Normal file
16
spec/requests/admin/trends/links_spec.rb
Normal file
|
@ -0,0 +1,16 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe 'Admin Trends Links' do
|
||||
describe 'POST /admin/trends/links/batch' do
|
||||
before { sign_in Fabricate(:admin_user) }
|
||||
|
||||
it 'gracefully handles invalid nested params' do
|
||||
post batch_admin_trends_links_path(trends_preview_card_batch: 'invalid')
|
||||
|
||||
expect(response)
|
||||
.to redirect_to(admin_trends_links_path)
|
||||
end
|
||||
end
|
||||
end
|
16
spec/requests/admin/trends/statuses_spec.rb
Normal file
16
spec/requests/admin/trends/statuses_spec.rb
Normal file
|
@ -0,0 +1,16 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe 'Admin Trends Statuses' do
|
||||
describe 'POST /admin/trends/statuses/batch' do
|
||||
before { sign_in Fabricate(:admin_user) }
|
||||
|
||||
it 'gracefully handles invalid nested params' do
|
||||
post batch_admin_trends_statuses_path(trends_status_batch: 'invalid')
|
||||
|
||||
expect(response)
|
||||
.to redirect_to(admin_trends_statuses_path)
|
||||
end
|
||||
end
|
||||
end
|
16
spec/requests/admin/trends/tags_spec.rb
Normal file
16
spec/requests/admin/trends/tags_spec.rb
Normal file
|
@ -0,0 +1,16 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe 'Admin Trends Tags' do
|
||||
describe 'POST /admin/trends/tags/batch' do
|
||||
before { sign_in Fabricate(:admin_user) }
|
||||
|
||||
it 'gracefully handles invalid nested params' do
|
||||
post batch_admin_trends_tags_path(trends_tag_batch: 'invalid')
|
||||
|
||||
expect(response)
|
||||
.to redirect_to(admin_trends_tags_path)
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue