~cytrogen/masto-fe

ref: ec59166844b04ec416bdbc2612fd8a4364f9dd67 masto-fe/spec/controllers/shares_controller_spec.rb -rw-r--r-- 504 bytes
ec591668 — Claire Fix ArgumentError when loading newer Private Mentions (#25399) 2 years ago
                                                                                
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 '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