mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
2c9f7662fc
Tests pass and smoke test works perfectly.
35 lines
837 B
Ruby
35 lines
837 B
Ruby
# frozen_string_literal: true
|
|
require_relative 'helper'
|
|
require 'sidekiq/logging'
|
|
|
|
class TestLogging < Sidekiq::Test
|
|
describe Sidekiq::Logging do
|
|
describe "#with_context" do
|
|
def context
|
|
Sidekiq::Logging.logger.formatter.context
|
|
end
|
|
|
|
it "has no context by default" do
|
|
context.must_equal nil
|
|
end
|
|
|
|
it "can add a context" do
|
|
Sidekiq::Logging.with_context "xx" do
|
|
context.must_equal " xx"
|
|
end
|
|
context.must_equal nil
|
|
end
|
|
|
|
it "can use multiple contexts" do
|
|
Sidekiq::Logging.with_context "xx" do
|
|
context.must_equal " xx"
|
|
Sidekiq::Logging.with_context "yy" do
|
|
context.must_equal " xx yy"
|
|
end
|
|
context.must_equal " xx"
|
|
end
|
|
context.must_equal nil
|
|
end
|
|
end
|
|
end
|
|
end
|