aboutsummaryrefslogtreecommitdiffstats
path: root/spec/mspec/lib/mspec/matchers/have_class_variable.rb
blob: 2d1903e1a8f4747b0f606ca62701752e31051993 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'mspec/matchers/variable'

class HaveClassVariableMatcher < VariableMatcher
  self.variables_method = :class_variables
  self.description      = 'class variable'
end

class Object
  def have_class_variable(variable)
    HaveClassVariableMatcher.new(variable)
  end
end