24 lines
837 B
Ruby
24 lines
837 B
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe "/internal/chat_channels", type: :request do
|
|
include ActiveJob::TestHelper
|
|
|
|
let(:user) { create(:user) }
|
|
let(:chat_channel) { create(:chat_channel) }
|
|
|
|
describe "POST /chat_channels" do
|
|
around { |example| perform_enqueued_jobs(&example) }
|
|
|
|
it "creates chat_channel for with users as moderator" do
|
|
user.add_role(:super_admin)
|
|
sign_in user
|
|
expect do
|
|
post "/internal/chat_channels",
|
|
params: { chat_channel: { channel_name: "Hello Channel", usernames_string: user.username.to_s } },
|
|
headers: { HTTP_ACCEPT: "application/json" }
|
|
end.to change(ActionMailer::Base.deliveries, :length)
|
|
expect(ChatChannel.last.channel_name).to eq("Hello Channel")
|
|
expect(ChatChannel.last.pending_users).to include(user)
|
|
end
|
|
end
|
|
end
|