1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00

Check response body instead of assigns in shares controller spec

This commit is contained in:
Matt Jankowski 2024-04-30 11:38:45 -04:00
parent aa4d8987a0
commit 922373c8f5

View file

@ -10,13 +10,16 @@ describe SharesController do
before { sign_in user } before { sign_in user }
describe 'GET #show' do describe 'GET #show' do
subject(:body_classes) { assigns(:body_classes) }
before { get :show, params: { title: 'test title', text: 'test text', url: 'url1 url2' } } before { get :show, params: { title: 'test title', text: 'test text', url: 'url1 url2' } }
it 'returns http success' do it 'returns http success' do
expect(response).to have_http_status 200 expect(response).to have_http_status 200
expect(body_classes).to eq 'modal-layout compose-standalone' expect(body_class_values)
.to include('modal-layout', 'compose-standalone')
end
def body_class_values
Nokogiri::Slop(response.body).css('body').first.classes
end end
end end
end end