module TestBelt::Matchers::HaveClassMethods::ClassMethods

Public Instance Methods

have_class_method(*meths)
Alias for: have_class_methods
have_class_methods(*meths) click to toggle source
# File lib/test_belt/matchers/have_class_methods.rb, line 9
def have_class_methods(*meths)
  meths.collect do |meth|
    Matcher.new(meth)
  end
end
Also aliased as: have_class_method