Last active
December 13, 2016 21:40
-
-
Save VojtechVitek/be32d1d553072ddfbebce7cce23e6290 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package zlib | |
| import ( | |
| "bytes" | |
| "io" | |
| "testing" | |
| ) | |
| type zlibTest struct { | |
| desc string | |
| raw string | |
| compressed []byte | |
| dict []byte | |
| err error | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment