mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
After upgrading `pytest-asyncio` to the latest version, lots of tests started failing in CI only on Python 3.9: `RuntimeError: There is no current event loop in thread 'MainThread'` Apparently these tests may have only been passing previously due to issues in earlier versions of `pytest-asyncio`. Changing these tests to async seems to fix the failures on Python 3.9. Related issue: https://github.com/pytest-dev/pytest-asyncio/issues/1039
22 lines
750 B
Python
22 lines
750 B
Python
from rich.text import Text
|
|
|
|
from textual.widgets import Tree
|
|
from textual.widgets.tree import TreeNode
|
|
|
|
|
|
async def test_tree_node_label() -> None:
|
|
"""It should be possible to modify a TreeNode's label."""
|
|
node = TreeNode(Tree[None]("Xenomorph Lifecycle"), None, 0, "Facehugger")
|
|
assert node.label == Text("Facehugger")
|
|
node.label = "Chestbuster"
|
|
assert node.label == Text("Chestbuster")
|
|
|
|
|
|
async def test_tree_node_label_via_tree() -> None:
|
|
"""It should be possible to modify a TreeNode's label when created via a Tree."""
|
|
tree = Tree[None]("Xenomorph Lifecycle")
|
|
node = tree.root.add("Facehugger")
|
|
assert node.label == Text("Facehugger")
|
|
node.label = "Chestbuster"
|
|
assert node.label == Text("Chestbuster")
|