mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 05:05:55 +08:00
37 lines
960 B
Ruby
37 lines
960 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'rails_helper'
|
||
|
|
||
|
describe TeamsController, type: :controller do
|
||
|
login_user
|
||
|
|
||
|
let(:user) { subject.current_user }
|
||
|
let(:team) { create :team, created_by: user }
|
||
|
let!(:user_team) { create :user_team, :admin, user: user, team: team }
|
||
|
|
||
|
describe 'POST export_projects' do
|
||
|
let!(:first_project) { create :project, team: team }
|
||
|
let!(:second_project) { create :project, team: team }
|
||
|
let(:params) do
|
||
|
{
|
||
|
id: team.id,
|
||
|
project_ids: [first_project.id, second_project.id]
|
||
|
}
|
||
|
end
|
||
|
let(:action) { post :export_projects, params: params, format: :json }
|
||
|
|
||
|
it 'calls create activity for inviting user' do
|
||
|
expect(Activities::CreateActivityService)
|
||
|
.to(receive(:call)
|
||
|
.with(hash_including(activity_type: :export_projects)))
|
||
|
|
||
|
action
|
||
|
end
|
||
|
|
||
|
it 'adds activity in DB' do
|
||
|
expect { action }
|
||
|
.to(change { Activity.count })
|
||
|
end
|
||
|
end
|
||
|
end
|