class SpecifiedOnGuard
Public Instance Methods
match?()
click to toggle source
# File lib/mspec/guards/specified.rb, line 10 def match? if @args.include? :ruby raise Exception, "improper use of specified_on guard" end not standard? and implementation?(*@args) end