about summary refs log tree commit homepage
path: root/test
diff options
context:
space:
mode:
authorEvan Weaver <eweaver@twitter.com>2008-11-22 18:59:21 -0800
committerEvan Weaver <eweaver@twitter.com>2008-11-22 18:59:21 -0800
commit3e1c8c363126814b60c164922ffa26b8227defda (patch)
treefc02630aed03cfd6f13aad8074d5459020e221d2 /test
parent559edfb1fbf18e9496a4235831fd49c5b0d8b459 (diff)
parentc365ba16d12a14bdf1cc50a26f67dd3b45f5a4d8 (diff)
downloadunicorn-3e1c8c363126814b60c164922ffa26b8227defda.tar.gz
Diffstat (limited to 'test')
-rw-r--r--test/unit/test_debug.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/test/unit/test_debug.rb b/test/unit/test_debug.rb
deleted file mode 100644
index 05d92d8..0000000
--- a/test/unit/test_debug.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright (c) 2005 Zed A. Shaw
-# You can redistribute it and/or modify it under the same terms as Ruby.
-#
-# Additional work donated by contributors.  See http://mongrel.rubyforge.org/attributions.html
-# for more information.
-
-require 'test/test_helper'
-require 'mongrel/debug'
-
-class MongrelDbgTest < Test::Unit::TestCase
-
-  def test_tracing_to_log
-    FileUtils.rm_rf "log/mongrel_debug"
-
-    MongrelDbg::configure
-    out = StringIO.new
-
-    MongrelDbg::begin_trace(:rails)
-    MongrelDbg::trace(:rails, "Good stuff")
-    MongrelDbg::end_trace(:rails)
-
-    assert File.exist?("log/mongrel_debug"), "Didn't make logging directory"
-  end
-
-end