Sha256: 96643fe2b52549da313c45920eeae9e5a2e4476d6807d39dff694caa90fafd6c
Contents?: true
Size: 1.29 KB
Versions: 80
Compression:
Stored size: 1.29 KB
Contents
{ "#": [ "The tests deliberately check that single characters are encoded without count." ], "cases": [ { "description": "encode empty string", "input": "", "expected": "" }, { "description": "encode single characters only", "input": "XYZ", "expected": "XYZ" }, { "description": "decode empty string", "input": "", "expected": "" }, { "description": "decode single characters only", "input": "XYZ", "expected": "XYZ" }, { "description": "encode simple", "input": "AABBBCCCC", "expected": "2A3B4C" }, { "description": "decode simple", "input": "2A3B4C", "expected": "AABBBCCCC" }, { "description": "encode with single values", "input": "WWWWWWWWWWWWBWWWWWWWWWWWWBBBWWWWWWWWWWWWWWWWWWWWWWWWB", "expected": "12WB12W3B24WB" }, { "description": "decode with single values", "input": "12WB12W3B24WB", "expected": "WWWWWWWWWWWWBWWWWWWWWWWWWBBBWWWWWWWWWWWWWWWWWWWWWWWWB" }, { "description": "decode(encode(...)) combination", "input": "zzz ZZ zZ", "expected": "zzz ZZ zZ" } ] }
Version data entries
80 entries across 80 versions & 1 rubygems