about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--test/test_clogger.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_clogger.rb b/test/test_clogger.rb
index 953152e..ca3bd55 100644
--- a/test/test_clogger.rb
+++ b/test/test_clogger.rb
@@ -147,6 +147,7 @@ class TestClogger < Test::Unit::TestCase
     req = {
       'HTTP_HOST' => 'example.com:12345',
       'HTTP_COOKIE' => cookie,
+      'REMOTE_USER' => 'foo_user',
     }
     req = @req.merge(req)
     body = cl.call(req).last
@@ -154,6 +155,7 @@ class TestClogger < Test::Unit::TestCase
     body.close
     str = str.string
     assert(str.size > 128)
+    assert_equal 'foo_user', str.split(' ')[2]
     assert_match %r["echo and socat \\o/" "#{cookie}" \d+\.\d{3}], str
     assert_match %r["#{cookie}" \d+\.\d{3} example\.com:12345\n\z], str
   end