module TestContexts class ApprovedContext def initialize(response, obj) # do nothing, just testing end def handle # do nothing, just testing end end class PendingContext def initialize(response, obj) # do nothing, just testing end def handle # do nothing, just testing end end class InProcessContext def initialize(response, obj) # do nothing, just testing end def handle # do nothing, just testing end end class InMediationContext def initialize(response, obj) # do nothing, just testing end def handle # do nothing, just testing end end class RejectedContext def initialize(response, obj) # do nothing, just testing end def handle # do nothing, just testing end end class RefundedContext def initialize(response, obj) # do nothing, just testing end def handle # do nothing, just testing end end class CancelledContext def initialize(response, obj) # do nothing, just testing end def handle # do nothing, just testing end end end