0
0
Fork 0

Convert shares controller spec to system spec (#31619)

This commit is contained in:
Matt Jankowski 2024-08-28 03:58:40 -04:00 committed by GitHub
parent 00586d27cb
commit 0ef636f72d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 27 additions and 36 deletions

View file

@ -1,22 +0,0 @@
# frozen_string_literal: true
require 'rails_helper'
describe SharesController do
render_views
let(:user) { Fabricate(:user) }
before { sign_in user }
describe 'GET #show' do
subject(:body_classes) { assigns(:body_classes) }
before { get :show, params: { title: 'test title', text: 'test text', url: 'url1 url2' } }
it 'returns http success' do
expect(response).to have_http_status 200
expect(body_classes).to eq 'modal-layout compose-standalone'
end
end
end