kopia lustrzana https://github.com/jupyterhub/repo2docker
Black refactor
rodzic
5e4932b704
commit
75f4a70fec
|
@ -115,12 +115,13 @@ def test_normalize_doi():
|
||||||
|
|
||||||
def test_open_guess_encoding():
|
def test_open_guess_encoding():
|
||||||
data = "Rică nu știa să zică râu, rățușcă, rămurică."
|
data = "Rică nu știa să zică râu, rățușcă, rămurică."
|
||||||
with tempfile.NamedTemporaryFile(mode='wb') as test_file:
|
with tempfile.NamedTemporaryFile(mode="wb") as test_file:
|
||||||
test_file.write(str.encode(data, "utf-16"))
|
test_file.write(str.encode(data, "utf-16"))
|
||||||
test_file.seek(0)
|
test_file.seek(0)
|
||||||
with utils.open_guess_encoding(test_file.name) as fd:
|
with utils.open_guess_encoding(test_file.name) as fd:
|
||||||
assert fd.read() == data
|
assert fd.read() == data
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize(
|
@pytest.mark.parametrize(
|
||||||
"req, is_local",
|
"req, is_local",
|
||||||
[
|
[
|
||||||
|
|
Ładowanie…
Reference in New Issue