Sha256: 38c8e6e5cee24fc4c097d2df474109ec21430d65483dd78f58a47a0bf2039af4
Contents?: true
Size: 288 Bytes
Versions: 100
Compression:
Stored size: 288 Bytes
Contents
module Jets::SpecHelpers::Controllers 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
Version data entries
100 entries across 100 versions & 2 rubygems