1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00
puma--puma/test/test_debug.rb
2006-03-26 20:01:50 +00:00

31 lines
772 B
Ruby

require 'fileutils'
FileUtils.mkdir_p "log/mongrel_debug"
require 'test/unit'
require 'mongrel/rails'
require 'mongrel/debug'
class MongrelDbgTest < Test::Unit::TestCase
def setup
FileUtils.rm_rf "log/mongrel_debug"
MongrelDbg::configure
end
def test_tracing_to_log
MongrelDbg::begin_trace(:rails)
MongrelDbg::trace(:rails, "Good stuff")
MongrelDbg::end_trace(:rails)
assert File.exist?("log/mongrel_debug"), "Didn't make logging directory"
assert File.exist?("log/mongrel_debug/rails.log"), "Didn't make the rails.log file"
assert File.size("log/mongrel_debug/rails.log") > 0, "Didn't write anything to the log."
Class.report_object_creations
Class.reset_object_creations
Class.report_object_creations
end
end