Sha256: 021db1b2b983f09f5460ddf4e0987280550f71571a3e80aee87211deecb15d61

Contents?: true

Size: 1.58 KB

Versions: 8

Compression:

Stored size: 1.58 KB

Contents

begin
  require "rspec"
  require "rspec/expectations"
  require "rspec/mocks"
rescue LoadError
  abort "Lita::RSpec requires both RSpec::Mocks and RSpec::Expectations."
end

major, minor, patch, *pre = RSpec::Mocks::Version::STRING.split(/\./)
if major == "2" && minor.to_i < 14
  abort "RSpec::Mocks 2.14 or greater is required to use Lita::RSpec."
end

require "lita/rspec/handler"

module Lita
  # Extras for +RSpec+ that facilitate the testing of Lita code.
  module RSpec
    class << self
      # Causes all interaction with Redis to use a test-specific namespace.
      # Clears Redis before each example. Stubs the logger to prevent log
      # messages from cluttering test output. Clears Lita's global
      # configuration.
      # @param base [Object] The class including the module.
      # @return [void]
      def included(base)
        base.class_eval do
          before do
            logger = double("Logger").as_null_object
            allow(Lita).to receive(:logger).and_return(logger)
            Lita.clear_config
          end
        end

        set_up_redis(base)
      end

      private

      # Set up Redis to use the test namespace and clear out before each
      # example.
      def set_up_redis(base)
        base.class_eval do
          before do
            stub_const("Lita::REDIS_NAMESPACE", "lita.test")
            keys = Lita.redis.keys("*")
            Lita.redis.del(keys) unless keys.empty?
          end
        end
      end
    end
  end
end

RSpec.configure do |config|
  config.include Lita::RSpec, lita: true
  config.include Lita::RSpec::Handler, lita_handler: true
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
lita-2.7.2 lib/lita/rspec.rb
lita-2.7.1 lib/lita/rspec.rb
lita-2.7.0 lib/lita/rspec.rb
lita-2.6.0 lib/lita/rspec.rb
lita-2.5.0 lib/lita/rspec.rb
lita-2.4.0 lib/lita/rspec.rb
lita-2.3.0 lib/lita/rspec.rb
lita-2.2.1 lib/lita/rspec.rb