From d3291bb2bbd03ed29b2f1006829ec1021cc6640d Mon Sep 17 00:00:00 2001
From: Thomas Schneider <qsx@chaotikum.eu>
Date: Sun, 9 Feb 2020 12:51:02 +0100
Subject: [PATCH] Remove ActionCable leftovers

---
 config/cable.yml                                   | 10 ----------
 test/channels/application_cable/connection_test.rb | 13 -------------
 2 files changed, 23 deletions(-)
 delete mode 100644 config/cable.yml
 delete mode 100644 test/channels/application_cable/connection_test.rb

diff --git a/config/cable.yml b/config/cable.yml
deleted file mode 100644
index 876f972..0000000
--- a/config/cable.yml
+++ /dev/null
@@ -1,10 +0,0 @@
-development:
-  adapter: async
-
-test:
-  adapter: test
-
-production:
-  adapter: redis
-  url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %>
-  channel_prefix: usermanager_production
diff --git a/test/channels/application_cable/connection_test.rb b/test/channels/application_cable/connection_test.rb
deleted file mode 100644
index c293805..0000000
--- a/test/channels/application_cable/connection_test.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-require 'test_helper'
-
-class ApplicationCable::ConnectionTest < ActionCable::Connection::TestCase
-  # test "connects with cookies" do
-  #   cookies.signed[:user_id] = 42
-  #
-  #   connect
-  #
-  #   assert_equal connection.user_id, "42"
-  # end
-end
-- 
GitLab