module Minitest::Extra::Matchers::Pending
Public Class Methods
included(base)
click to toggle source
# File lib/minitest/extra/matchers/pending.rb, line 5 def self.included(base) base.extend ClassMethods base.class_eval do end end
Public Instance Methods
pending()
click to toggle source
# File lib/minitest/extra/matchers/pending.rb, line 11 def pending skip('Not yet implemented...') end