Sha256: 7e6a7b5774ed21ba840acf279fba04761e1a911f7108f479bb48e1b9993a438a
Contents?: true
Size: 674 Bytes
Versions: 1
Compression:
Stored size: 674 Bytes
Contents
require "spec_helper" describe Timber::LogEntry, :rails_23 => true do describe "#to_msgpack" do let(:time) { Time.utc(2016, 9, 1, 12, 0, 0) } it "should encode properly with an event and context" do event = Timber::Events::Custom.new(type: :event_type, message: "event_message", data: {a: 1}) context = {custom: Timber::Contexts::Custom.new(type: :context_type, data: {b: 1})} log_entry = described_class.new("INFO", time, nil, "log message", context, event, []) msgpack = log_entry.to_msgpack expect(msgpack).to start_with("\x86\xA5level\xA4INFO\xA2dt\xBB2016-09-01T12:00:00.000000Z".force_encoding("ASCII-8BIT")) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
timber-1.1.0 | spec/timber/log_entry_spec.rb |