diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2016-02-15 15:42:21 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2016-02-15 15:42:21 +0000 |
commit | fd4f9c92ea39447557f1847c6bdb4e178e972fec (patch) | |
tree | 78faa3c6b898e3996edee76823e285d6de671007 /test/stdout | |
parent | 61fd9a693285fe264aa67ffa0ef042a68c63c5cd (diff) |
Expansions: add operators base32, base32d
Diffstat (limited to 'test/stdout')
-rw-r--r-- | test/stdout/0002 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/stdout/0002 b/test/stdout/0002 index ee351a278..ab59183a2 100644 --- a/test/stdout/0002 +++ b/test/stdout/0002 @@ -168,6 +168,20 @@ > hex2b64:MPPJPkZDbetYunCBao7BJA== > hex2b64:ztcfpyNSMb7Tg/rP3EHE3cwi7PE= > +> base32: 0 <> +> base32: 1 <b> +> base32: 31 <7> +> base32: 32 <ba> +> base32: 42 <bk> +> Failed: argument for base32 operator is "0x1", which is not a decimal number +> +> base32d: 0 0 +> base32d: 1 1 +> base32d: 31 31 +> base32d: 32 32 +> base32d: 42 42 +> Failed: argument for base32d operator is "ABC", which is not a base 32 number +> > The base62 operator is actually a base36 operator in the Darwin and Cygwin > environments. Write cunning tests that produce the same output in both cases, > while doing a reasonable check. |