about summary refs log tree commit diff
path: root/spec/controllers/shares_controller_spec.rb
blob: 6d5bb4f8d8d985d1cdfdc70fa5507dede86f8220 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

require 'rails_helper'

describe SharesController do
  render_views

  let(:user) { Fabricate(:user) }

  before { sign_in user }

  describe 'GTE #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