# File lib/rfuzz/random.rb, line 31 31: def hash_of(count,length=5,type=@type) 32: list = [] 33: count.times do 34: list << Hash[*send(type,length*2)] 35: end 36: 37: return list 38: end