15 lines
388 B
Ruby
15 lines
388 B
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe "PusherAuth", type: :request do
|
|
let(:user) { build(:user) }
|
|
let(:chat_channel) { build(:chat_channel) }
|
|
|
|
describe "POST /pusher/auth" do
|
|
it "returns forbidden with invalid channel" do
|
|
post "/pusher/auth", params: {
|
|
channel_name: "hey hey hey hey"
|
|
}
|
|
expect(response.body).to include("Forbidden")
|
|
end
|
|
end
|
|
end
|