Sha256: 43796b2afc8a1d703ee449c21c25f845f6d8e1cfd9f8fc657f260ade1a83a3e2
Contents?: true
Size: 369 Bytes
Versions: 6
Compression:
Stored size: 369 Bytes
Contents
class Object def before(at=:each, &block) MSpec.current.before at, &block end def after(at=:each, &block) MSpec.current.after at, &block end def describe(mod, msg=nil, &block) MSpec.describe mod, msg, &block end def it(msg, &block) MSpec.current.it msg, &block end alias_method :context, :describe alias_method :specify, :it end
Version data entries
6 entries across 6 versions & 1 rubygems