Aluode/PerceptionLabPortable
0
1from joblib.compressor import BinaryZlibFile2from joblib.testing import parametrize3 4 5@parametrize("filename", ["test", "test"]) # testing str and unicode names6def test_binary_zlib_file(tmpdir, filename):7 """Testing creation of files depending on the type of the filenames."""8 binary_file = BinaryZlibFile(tmpdir.join(filename).strpath, mode="wb")9 binary_file.close()10 