module RSpec::SleepingKingStudios::Deferred::Missing
Optional support for deferring unrecognized methods.
Public Class Methods
Source
# File lib/rspec/sleeping_king_studios/deferred/missing.rb, line 38 def self.included(other) super other.extend( RSpec::SleepingKingStudios::Deferred::Missing::ClassMethods ) end
Callback invoked when the module is included in another module or class.
Extends the class or module with the ClassMethods
module.
@param other [Module] the other module or class.
@see RSpec::SleepingKingStudios::Deferred::Missing::ClassMethods
.
Calls superclass method