about summary refs log tree commit homepage
path: root/test
diff options
context:
space:
mode:
authorEvan Weaver <eweaver@twitter.com>2008-11-22 18:49:00 -0800
committerEvan Weaver <eweaver@twitter.com>2008-11-22 18:49:00 -0800
commitc365ba16d12a14bdf1cc50a26f67dd3b45f5a4d8 (patch)
treefc02630aed03cfd6f13aad8074d5459020e221d2 /test
parent007e011b87b10ea5e16921eac5eb468df3d9f5a4 (diff)
downloadunicorn-c365ba16d12a14bdf1cc50a26f67dd3b45f5a4d8.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