about summary refs log tree commit homepage
path: root/test/test_clogger_to_path.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_clogger_to_path.rb')
-rw-r--r--test/test_clogger_to_path.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_clogger_to_path.rb b/test/test_clogger_to_path.rb
index 4da3103..b25ec46 100644
--- a/test/test_clogger_to_path.rb
+++ b/test/test_clogger_to_path.rb
@@ -50,6 +50,7 @@ class TestCloggerToPath < Test::Unit::TestCase
 
     status, headers, body = app.call(@req)
     assert_instance_of(Clogger::ToPath, body)
+    assert body.respond_to?(:to_path)
     assert logger.string.empty?
     assert_equal tmp.path, body.to_path
     body.close
@@ -76,6 +77,7 @@ class TestCloggerToPath < Test::Unit::TestCase
 
     status, headers, body = app.call(@req)
     assert_instance_of(Clogger::ToPath, body)
+    assert body.respond_to?(:to_path)
     assert logger.string.empty?
     assert_equal "/dev/fd/#{tmp.fileno}", body.to_path
     body.close
@@ -108,6 +110,7 @@ class TestCloggerToPath < Test::Unit::TestCase
 
     status, headers, body = app.call(@req)
     assert_instance_of(Clogger::ToPath, body)
+    assert body.respond_to?(:to_path)
     body.to_path
     assert_kind_of IO, tmp.instance_variable_get(:@to_io_called)
     assert logger.string.empty?