Sha256: 08f512793bfe1fbf60a38f22211ba817e5994f2d573627016f6e1c8b6a231d07
Contents?: true
Size: 301 Bytes
Versions: 52
Compression:
Stored size: 301 Bytes
Contents
module Jets module SpecHelpers class Params attr_accessor :path_params, :body_params, :query_params def initialize(path_params={}, body_params={}, query_params={}) @path_params, @body_params, @query_params = path_params, body_params, query_params end end end end
Version data entries
52 entries across 52 versions & 2 rubygems