Convert filters/statuses
spec controller->system/request (#34232)
This commit is contained in:
parent
d15879312e
commit
9d3daa847a
3 changed files with 47 additions and 45 deletions
21
spec/system/filters/statuses_spec.rb
Normal file
21
spec/system/filters/statuses_spec.rb
Normal file
|
@ -0,0 +1,21 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe 'Filters Statuses' do
|
||||
describe 'Viewing statuses under a filter' do
|
||||
let(:filter) { Fabricate(:custom_filter, title: 'good filter') }
|
||||
|
||||
context 'with the filter user signed in' do
|
||||
before { sign_in(filter.account.user) }
|
||||
|
||||
it 'returns a page with the status filters' do
|
||||
visit filter_statuses_path(filter)
|
||||
|
||||
expect(page)
|
||||
.to have_private_cache_control
|
||||
.and have_title(/good filter/)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue