Sha256: 771703ef96426c62a1b02af8cbb76de010b35fb1d91a3d557775c75a33170995

Contents?: true

Size: 1.24 KB

Versions: 2

Compression:

Stored size: 1.24 KB

Contents

if ENV["TRAVIS"]
  require "coveralls"
  Coveralls.wear!("rails")
end

require "action_controller_tweaks"

require "fixtures/application"
require "fixtures/controllers"

require "rspec/rails"
require "rspec/its"

require "timecop"
require "logger"

# see https://github.com/rspec/rspec-rails/issues/1171
# prevent Test::Unit"s AutoRunner from executing during RSpec"s rake task
Test::Unit.run = true if defined?(Test::Unit) && Test::Unit.respond_to?(:run=)

# For comparison
class Hash
  def deep_include?(sub_hash)
    sub_hash.keys.all? do |key|
      next unless self.key?(key)

      if sub_hash[key].is_a?(Hash)
        self[key].is_a?(Hash) && self[key].deep_include?(sub_hash[key])
      else
        self[key] == sub_hash[key]
      end
    end
  end
end

RSpec.configure do
end


# Monkey patch for rails 4.2 + ruby 2.6
# https://github.com/rails/rails/issues/34790
if RUBY_VERSION>='2.6.0'
  if Rails.version < '5'
    class ActionController::TestResponse < ActionDispatch::TestResponse
      def recycle!
        # hack to avoid MonitorMixin double-initialize error:
        @mon_mutex_owner_object_id = nil
        @mon_mutex = nil
        initialize
      end
    end
  else
    puts "Monkeypatch for ActionController::TestResponse no longer needed"
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
action_controller_tweaks-0.3.5 spec/spec_helper.rb
action_controller_tweaks-0.3.4 spec/spec_helper.rb