Sha256: 11a3088552403aef3d54f48a70bae9a9771071377a27574be9f93021e087bc90
Contents?: true
Size: 409 Bytes
Versions: 83
Compression:
Stored size: 409 Bytes
Contents
module RubyPitaya class PostmanSpecHelper def initialize @postman_mock = nil end def bind_session(session) response = @postman_mock&.bind_session(session) response ||= {} response end def push_to_user(uid, message_route, payload) response = @postman_mock&.push_to_user(uid, message_route, payload) response ||= {} response end end end
Version data entries
83 entries across 79 versions & 1 rubygems