Sha256: a1ff5f1a1bfa9d7cafd2dde787f3decc277bc28230c49fa3629b0a33f68c36ae
Contents?: true
Size: 1.73 KB
Versions: 1
Compression:
Stored size: 1.73 KB
Contents
module RSpec module Rails # @private module FeatureCheck module_function def can_check_pending_migrations? has_active_record_migration? && ::ActiveRecord::Migration.respond_to?(:check_pending!) end def can_maintain_test_schema? has_active_record_migration? && ::ActiveRecord::Migration.respond_to?(:maintain_test_schema!) end def has_active_job? defined?(::ActiveJob) end def has_active_record? defined?(::ActiveRecord) end def has_active_record_migration? has_active_record? && defined?(::ActiveRecord::Migration) end def has_action_mailer? defined?(::ActionMailer) end def has_action_mailer_preview? has_action_mailer? && defined?(::ActionMailer::Preview) end def has_action_cable_testing? defined?(::ActionCable) && ActionCable::VERSION::MAJOR >= 6 end def has_action_mailer_show_preview? has_action_mailer_preview? && ::ActionMailer::Base.respond_to?(:show_previews=) end def has_action_mailer_parameterized? has_action_mailer? && defined?(::ActionMailer::Parameterized) end def has_action_mailer_unified_delivery? has_action_mailer? && defined?(::ActionMailer::MailDeliveryJob) end def has_action_mailbox? defined?(::ActionMailbox) end def has_1_9_hash_syntax? ::Rails::VERSION::STRING > '4.0' end def has_file_fixture? ::Rails::VERSION::STRING > '5.0' end def type_metatag(type) if has_1_9_hash_syntax? "type: :#{type}" else ":type => :#{type}" end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rspec-rails-4.0.0.beta3 | lib/rspec/rails/feature_check.rb |