# File lib/scrubyt/logging.rb, line 125
    def test_simple_messages_are_output_correctly
      setup_logger_with_faux_output_stream!

      Scrubyt.log :ACTION, 'i just did something'

      assert_equal 1, @stream.size
      assert_equal '[ACTION] i just did something', @stream.first
    end