Skip to content

Commit

Permalink
snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
willmcgugan committed Oct 22, 2024
1 parent 228c1c0 commit 09985d5
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions tests/snapshot_tests/snapshot_apps/split_segments.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from textual.app import App, ComposeResult
from textual.widgets import TextArea

FAIL_TEXT = "x "


class CodeApp(App):
def compose(self) -> ComposeResult:
yield TextArea(FAIL_TEXT, soft_wrap=False, show_line_numbers=True)


if __name__ == "__main__":
app = CodeApp()
app.run()

0 comments on commit 09985d5

Please sign in to comment.