Object
Unit, integration and stress testing toolkit
@param [Integer] a Lower bound of message size, in KB @param [Integer] b Upper bound of message size, in KB @param [Integer] i Random number to use in message generation @return [String] Message payload of length in the given range, with non-ASCII characters @api public
# File lib/bunny/test_kit.rb, line 17 def message_in_kb(a, b, i) s = "Ю#{i}" n = random_in_range(a, b) / s.bytesize s * n * 1024 end
Generated with the Darkfish Rdoc Generator 2.