From 1230ca3694260d8b975f180365c5787665d1ce11 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Sun, 29 Jan 2023 11:58:46 +0000 Subject: [PATCH] Rename the key action tests There are actions that relate to editing the input too, which I also want to test, but I'm not minded to lump them all in the same file. So here I'm renaming to make it clear these tests are just about movement. The editing ones will come next in their own file. --- ..._input_key_actions.py => test_input_key_movement_actions.py} | 2 ++ 1 file changed, 2 insertions(+) rename tests/input/{test_input_key_actions.py => test_input_key_movement_actions.py} (98%) diff --git a/tests/input/test_input_key_actions.py b/tests/input/test_input_key_movement_actions.py similarity index 98% rename from tests/input/test_input_key_actions.py rename to tests/input/test_input_key_movement_actions.py index 641f2ee91..6297eee9e 100644 --- a/tests/input/test_input_key_actions.py +++ b/tests/input/test_input_key_movement_actions.py @@ -1,3 +1,5 @@ +"""Unit tests for Input widget position movement actions.""" + from textual.app import App, ComposeResult from textual.widgets import Input