Module: ActiveSupport::Testing::TaggedLogging
- Included in:
- ActiveSupport::TestCase
- Defined in:
- lib/active_support/testing/tagged_logging.rb
Overview
Logs a “PostsControllerTest: test name” heading before each test to make test.log easier to search and follow along with.
Instance Attribute Summary collapse
-
#tagged_logger ⇒ Object
writeonly
:nodoc:.
Instance Method Summary collapse
Instance Attribute Details
#tagged_logger=(value) ⇒ Object
:nodoc:
6 7 8 |
# File 'lib/active_support/testing/tagged_logging.rb', line 6 def tagged_logger=(value) @tagged_logger = value end |
Instance Method Details
#before_setup ⇒ Object
8 9 10 11 12 13 14 15 16 17 |
# File 'lib/active_support/testing/tagged_logging.rb', line 8 def before_setup if tagged_logger heading = "#{self.class}: #{__name__}" divider = '-' * heading.size tagged_logger.info divider tagged_logger.info heading tagged_logger.info divider end super end |