~cytrogen/masto-fe

ref: f906e21a4fa2b035ee565ed55eeaa629df48e2e6 masto-fe/spec/controllers/shares_controller_spec.rb -rw-r--r-- 504 bytes
f906e21a — Daniel M Brasil Add test coverage for `Mastodon::CLI::Accounts#refresh` (#25196) 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