aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/test/channel/test_case_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add Channel#broadcast_toVladimir Dementyev2019-01-221-1/+1
|
* Add streams assert methods to ActionCable channel test caseSergey Ponomarev2018-12-181-2/+28
|
* Add ActionCable::Channel::TestCaseVladimir Dementyev2018-09-261-0/+188
ActionCable::Channel::TestCase provides an ability to unit-test channel classes. There are several reasons to write unit/functional cable tests: - Access control (who has access to the channel? who can perform action and with which argument? - Frontend-less applications have no system tests at all–and we still need a way to test channels logic. See also #27191