# File test/pseudo_props.rb, line 32 def params(*names) @params_call += 1 @params_names = names params = Hash.new params.extend(Rucy::ModifiedCount) params.modified_count = @modified_count for name in names if (@store.include? name) then params[name] = @store[name] end end params end