Welcome to mirror list, hosted at ThFree Co, Russian Federation.

inspect_squelch.rb « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 90475204889c4ab22c03b3550d2e4d9b50cc9f62 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

# This class can generate a lot of output if it fails,
# so squelch the instance variable output.
class ActiveSupport::Cache::NullStore
  def inspect
    "<#{self.class}>"
  end
end