- #!/bin/sh -ex
 
- test "`printf "" | jose b64 enc -I-`" = ""
 
- test `printf "f" | jose b64 enc -I-` = "Zg"
 
- test `printf "fo" | jose b64 enc -I-` = "Zm8"
 
- test `printf "foo" | jose b64 enc -I-` = "Zm9v"
 
- test `printf "foob" | jose b64 enc -I-` = "Zm9vYg"
 
- test `printf "fooba" | jose b64 enc -I-` = "Zm9vYmE"
 
- test `printf "foobar" | jose b64 enc -I-` = "Zm9vYmFy"
 
 
  |