Sha256: ae09564c32ace1abfc479570421921531bfeff6cb4c99eddadc491fac873bdd9
Contents?: true
Size: 696 Bytes
Versions: 34
Compression:
Stored size: 696 Bytes
Contents
require 'spec_helper' describe Lumberjack::Formatter::ExceptionFormatter do it "should convert an exception without a backtrace to a string" do e = ArgumentError.new("not expected") formatter = Lumberjack::Formatter::ExceptionFormatter.new formatter.call(e).should == "ArgumentError: not expected" end it "should convert an exception with a backtrace to a string" do begin raise ArgumentError.new("not expected") rescue => e formatter = Lumberjack::Formatter::ExceptionFormatter.new formatter.call(e).should == "ArgumentError: not expected#{Lumberjack::LINE_SEPARATOR} #{e.backtrace.join(Lumberjack::LINE_SEPARATOR + ' ')}" end end end
Version data entries
34 entries across 32 versions & 10 rubygems