Sha256: 08ae6384d5f5fb0b099807846fab90e5ddd9bab74ce4ce5879b43191d3f275ec

Contents?: true

Size: 663 Bytes

Versions: 13

Compression:

Stored size: 663 Bytes

Contents

# frozen_string_literal: true

RSpec.configure do |config|
  config.around(:each, :singletons => lambda { |v| !!v }) do |example|
    config.rspeckled_logger.debug("Around Each  - Start - #{__FILE__}")

    options             = example.metadata[:singletons]
    options             = options.is_a?(::TrueClass) ? described_class : options
    singletons_to_reset = Array(options)

    singletons_to_reset.each do |singleton|
      ::Singleton.__init__(singleton)
    end

    example.run

    singletons_to_reset.each do |singleton|
      ::Singleton.__init__(singleton)
    end

    config.rspeckled_logger.debug("Around Each  - End   - #{__FILE__}")
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
rspeckled-2.0.1 lib/rspeckled/plugins/hooks/singletons.rb
rspeckled-2.0.0 lib/rspeckled/plugins/hooks/singletons.rb
rspeckled-1.4.0 lib/rspeckled/plugins/hooks/singletons.rb
rspeckled-1.3.1 lib/rspeckled/plugins/hooks/singletons.rb
rspeckled-1.3.0 lib/rspeckled/plugins/hooks/singletons.rb
rspeckled-1.2.1 lib/rspeckled/plugins/hooks/singletons.rb
rspeckled-1.2.0 lib/rspeckled/plugins/hooks/singletons.rb
rspeckled-1.1.3 lib/rspeckled/plugins/hooks/singletons.rb
rspeckled-1.1.2 lib/rspeckled/plugins/hooks/singletons.rb
rspeckled-1.1.1 lib/rspeckled/plugins/hooks/singletons.rb
rspeckled-1.1.0 lib/rspeckled/plugins/hooks/singletons.rb
rspeckled-1.0.5 lib/rspeckled/plugins/hooks/singletons.rb
rspeckled-1.0.4 lib/rspeckled/plugins/hooks/singletons.rb