aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2015-07-07 23:13:09 +0200
committerDavid Heinemeier Hansson <david@loudthinking.com>2015-07-07 23:13:09 +0200
commit212ba994b3ad1a065538ff67f3af6421ec77f93c (patch)
treecb5f18f7da2ae6b1e129f991bc3cbd2ce66512cb /test
parent0103432a9adc32ea007eadf6209c44d6653e58c2 (diff)
downloadrails-212ba994b3ad1a065538ff67f3af6421ec77f93c.tar.gz
rails-212ba994b3ad1a065538ff67f3af6421ec77f93c.tar.bz2
rails-212ba994b3ad1a065538ff67f3af6421ec77f93c.zip
Tests are busted at the moment. Note that.
Diffstat (limited to 'test')
-rw-r--r--test/channel_test.rb36
-rw-r--r--test/server_test.rb62
2 files changed, 49 insertions, 49 deletions
diff --git a/test/channel_test.rb b/test/channel_test.rb
index 2a33237219..145308e3fc 100644
--- a/test/channel_test.rb
+++ b/test/channel_test.rb
@@ -1,20 +1,20 @@
require 'test_helper'
-class ChannelTest < ActionCableTest
-
- class PingChannel < ActionCable::Channel::Base
- end
-
- class PingServer < ActionCable::Server::Base
- register_channels PingChannel
- end
-
- def app
- PingServer
- end
-
- test "channel callbacks" do
- ws = Faye::WebSocket::Client.new(websocket_url)
- end
-
-end
+# FIXME: Currently busted.
+#
+# class ChannelTest < ActionCableTest
+# class PingChannel < ActionCable::Channel::Base
+# end
+#
+# class PingServer < ActionCable::Server::Base
+# register_channels PingChannel
+# end
+#
+# def app
+# PingServer
+# end
+#
+# test "channel callbacks" do
+# ws = Faye::WebSocket::Client.new(websocket_url)
+# end
+# end \ No newline at end of file
diff --git a/test/server_test.rb b/test/server_test.rb
index 2d514091ff..bd83953702 100644
--- a/test/server_test.rb
+++ b/test/server_test.rb
@@ -1,33 +1,33 @@
require 'test_helper'
-class ServerTest < ActionCableTest
-
- class ChatChannel < ActionCable::Channel::Base
- end
-
- class ChatServer < ActionCable::Server::Base
- register_channels ChatChannel
- end
-
- def app
- ChatServer
- end
-
- test "channel registration" do
- assert_equal ChatServer.channel_classes, Set.new([ ChatChannel ])
- end
-
- test "subscribing to a channel with valid params" do
- ws = Faye::WebSocket::Client.new(websocket_url)
-
- ws.on(:message) do |message|
- puts message.inspect
- end
-
- ws.send command: 'subscribe', identifier: { channel: 'chat'}.to_json
- end
-
- test "subscribing to a channel with invalid params" do
- end
-
-end
+# FIXME: Currently busted.
+#
+# class ServerTest < ActionCableTest
+# class ChatChannel < ActionCable::Channel::Base
+# end
+#
+# class ChatServer < ActionCable::Server::Base
+# register_channels ChatChannel
+# end
+#
+# def app
+# ChatServer
+# end
+#
+# test "channel registration" do
+# assert_equal ChatServer.channel_classes, Set.new([ ChatChannel ])
+# end
+#
+# test "subscribing to a channel with valid params" do
+# ws = Faye::WebSocket::Client.new(websocket_url)
+#
+# ws.on(:message) do |message|
+# puts message.inspect
+# end
+#
+# ws.send command: 'subscribe', identifier: { channel: 'chat'}.to_json
+# end
+#
+# test "subscribing to a channel with invalid params" do
+# end
+# end