Sha256: 86d1dba45c3e682cddaafad3dc8eee00fdbaf5c1c07dee02b92b292874b97225
Contents?: true
Size: 1.77 KB
Versions: 3
Compression:
Stored size: 1.77 KB
Contents
# frozen_string_literal: true require "rspec/rails/matchers/action_cable/have_streams" module RSpec module Rails # @api public # Container module for channel spec functionality. It is only available if # ActionCable has been loaded before it. module ChannelExampleGroup # This blank module is only necessary for YARD processing. It doesn't # handle the conditional `defined?` check below very well. end end end if defined?(ActionCable) module RSpec module Rails # Container module for channel spec functionality. module ChannelExampleGroup extend ActiveSupport::Concern include RSpec::Rails::RailsExampleGroup include ActionCable::Connection::TestCase::Behavior include ActionCable::Channel::TestCase::Behavior # Class-level DSL for channel specs. module ClassMethods # @private def channel_class described_class end # @private def connection_class raise "Described class is not a Connection class" unless described_class <= ::ActionCable::Connection::Base described_class end end def have_rejected_connection raise_error(::ActionCable::Connection::Authorization::UnauthorizedError) end def have_streams check_subscribed! RSpec::Rails::Matchers::ActionCable::HaveStream.new end def have_stream_from(stream) check_subscribed! RSpec::Rails::Matchers::ActionCable::HaveStream.new(stream) end def have_stream_for(object) check_subscribed! RSpec::Rails::Matchers::ActionCable::HaveStream.new(broadcasting_for(object)) end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems