Sha256: 31bbb44f61054885e268c7b391a3b3055752fbd64749699fa2bece5b55e363ed
Contents?: true
Size: 644 Bytes
Versions: 31
Compression:
Stored size: 644 Bytes
Contents
# 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/testhelp' 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
Version data entries
31 entries across 31 versions & 7 rubygems