From b82109495b2e910f05922b05a2df69d42f3635a9 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Wed, 26 Dec 2012 21:02:24 -0700 Subject: Make test logs easier to read. Tagging every message in tests makes the logs really wide. It's great for grepping, but annoying to open in an editor or a narrow terminal. Try out a different approach: spit out a heading before each test. --- activesupport/test/test_test.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'activesupport/test/test_test.rb') diff --git a/activesupport/test/test_test.rb b/activesupport/test/test_test.rb index d6821135ea..7f732a1d20 100644 --- a/activesupport/test/test_test.rb +++ b/activesupport/test/test_test.rb @@ -182,7 +182,6 @@ class TestCaseTaggedLoggingTest < ActiveSupport::TestCase end def test_logs_tagged_with_current_test_case - tagged_logger.info 'test' - assert_equal "[#{self.class.name}] [#{__name__}] test\n", @out.string + assert_match "#{self.class}: #{__name__}\n", @out.string end end -- cgit v1.2.3