Sha256: 4099e7a09169c9d13971429205623511f743a4194c9dd5892e703f861e8860ea
Contents?: true
Size: 350 Bytes
Versions: 34
Compression:
Stored size: 350 Bytes
Contents
require 'spec_helper' describe Lumberjack::Formatter::PrettyPrintFormatter do it "should convert an object to a string using pretty print" do object = Object.new def object.pretty_print(q) q.text "woot!" end formatter = Lumberjack::Formatter::PrettyPrintFormatter.new formatter.call(object).should == "woot!" end end
Version data entries
34 entries across 32 versions & 10 rubygems