Repository URL to install this package:
|
Version:
2.1.1 ▾
|
import pytest
from charset_normalizer import normalize
from os.path import exists
from os import unlink
def test_normalize_fp_creation():
guesses = normalize(
"./data/sample-arabic-1.txt"
)
predicted_path = "./data/sample-arabic-1-{}.txt".format(guesses.best().encoding)
path_exist = exists(
"./data/sample-arabic-1-{}.txt".format(guesses.best().encoding)
)
assert path_exist is True
if path_exist:
unlink(predicted_path)