-
Notifications
You must be signed in to change notification settings - Fork 815
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(input): add clear method (#3430)
* feat(input): add clear method * update changelog * fix method case in changelog
- Loading branch information
1 parent
dee7459
commit 3f36989
Showing
3 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
from textual.app import App, ComposeResult | ||
from textual.widgets import Input | ||
|
||
|
||
class InputApp(App): | ||
def compose(self) -> ComposeResult: | ||
yield Input("Hello, World!") | ||
|
||
|
||
async def test_input_clear(): | ||
async with InputApp().run_test() as pilot: | ||
input_widget = pilot.app.query_one(Input) | ||
assert input_widget.value == "Hello, World!" | ||
input_widget.clear() | ||
await pilot.pause() | ||
assert input_widget.value == "" |