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