webrat/spec/private/core/logging_spec.rb

11 lines
257 B
Ruby
Raw Normal View History

require File.expand_path(File.dirname(__FILE__) + "/../../spec_helper")
describe Webrat::Logging do
2009-04-08 00:30:12 +00:00
it "should not log if there is no logger" do
klass = Class.new
klass.send(:include, Webrat::Logging)
klass.new.debug_log "Testing"
end
2009-04-08 00:30:12 +00:00
end