Skip to content

Commit

Permalink
Add a unit test for testing Textualize#2363
Browse files Browse the repository at this point in the history
  • Loading branch information
davep committed Jul 24, 2023
1 parent 1cf5bd0 commit 2376878
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions tests/directory_tree/test_early_show_root.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
from textual.app import App, ComposeResult
from textual.widgets import DirectoryTree


class DirectoryTreeApp(App[None]):
def compose(self) -> ComposeResult:
tree = DirectoryTree(".")
tree.show_root = True
yield tree


async def test_managed_to_set_show_root_before_mounted() -> None:
"""https://github.com/Textualize/textual/issues/2363"""
async with DirectoryTreeApp().run_test() as pilot:
assert isinstance(pilot.app.query_one(DirectoryTree), DirectoryTree)
assert pilot.app.query_one(DirectoryTree).show_root is True

0 comments on commit 2376878

Please sign in to comment.