Sha256: 38a1bab16473044b470b5a7d488df47e7f8d8d281f7ed76bd093de27ce73f074

Contents?: true

Size: 683 Bytes

Versions: 108

Compression:

Stored size: 683 Bytes

Contents

module ActiveSupport
  module Testing
    # Logs a "PostsControllerTest: test name" heading before each test to
    # make test.log easier to search and follow along with.
    module TaggedLogging #:nodoc:
      attr_writer :tagged_logger

      def before_setup
        if tagged_logger && tagged_logger.info?
          heading = "#{self.class}: #{name}"
          divider = '-' * heading.size
          tagged_logger.info divider
          tagged_logger.info heading
          tagged_logger.info divider
        end
        super
      end

      private
        def tagged_logger
          @tagged_logger ||= (defined?(Rails.logger) && Rails.logger)
        end
    end
  end
end

Version data entries

108 entries across 103 versions & 15 rubygems

Version Path
activesupport-5.0.2.rc1 lib/active_support/testing/tagged_logging.rb
activesupport-4.2.8 lib/active_support/testing/tagged_logging.rb
activesupport-4.2.8.rc1 lib/active_support/testing/tagged_logging.rb
autocompl-0.2.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-5.0.1/lib/active_support/testing/tagged_logging.rb
autocompl-0.2.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-5.0.1/lib/active_support/testing/tagged_logging.rb
autocompl-0.2.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-5.0.1/lib/active_support/testing/tagged_logging.rb
autocompl-0.1.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-5.0.1/lib/active_support/testing/tagged_logging.rb
autocompl-0.1.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-5.0.1/lib/active_support/testing/tagged_logging.rb
autocompl-0.1.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-5.0.1/lib/active_support/testing/tagged_logging.rb
autocompl-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-5.0.1/lib/active_support/testing/tagged_logging.rb
abaci-0.3.0 vendor/bundle/gems/activesupport-5.0.0/lib/active_support/testing/tagged_logging.rb
abaci-0.3.0 vendor/bundle/gems/activesupport-5.0.1/lib/active_support/testing/tagged_logging.rb
activesupport-5.0.1 lib/active_support/testing/tagged_logging.rb
activesupport-5.0.1.rc2 lib/active_support/testing/tagged_logging.rb
activesupport-5.0.1.rc1 lib/active_support/testing/tagged_logging.rb
second_step-0.1.2 secondstep-notify-1.0.0-osx/lib/ruby/lib/ruby/gems/2.2.0/gems/activesupport-5.0.0.1/lib/active_support/testing/tagged_logging.rb
activesupport-5.0.0.1 lib/active_support/testing/tagged_logging.rb
activesupport-4.2.7.1 lib/active_support/testing/tagged_logging.rb
activesupport-4.2.7 lib/active_support/testing/tagged_logging.rb
activesupport-4.2.7.rc1 lib/active_support/testing/tagged_logging.rb