import os import shutil import tempfile import unittest
import mozunit from mozfile import tree
class TestTree(unittest.TestCase): """Test the tree function."""
def test_unicode_paths(self): """Test creating tree structure from a Unicode path.""" try:
tmpdir = tempfile.mkdtemp(suffix="tmp🍪")
os.mkdir(os.path.join(tmpdir, "dir🍪")) with open(os.path.join(tmpdir, "file🍪"), "w") as f:
f.write("foo")
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.