summaryrefslogtreecommitdiff
path: root/spec/support/inspect_squelch.rb
blob: 8ee6732370b30ccb26c4507a4806602aa1c40da1 (plain)
1
2
3
4
5
6
7
# 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