Added a smoke test

This commit is contained in:
Matthias Koefferlein 2025-09-24 22:35:03 +02:00
parent 97b6d82358
commit d1e49dfd90
1 changed files with 7 additions and 0 deletions

View File

@ -53,6 +53,13 @@ class BasicTest(unittest.TestCase):
p.name = "u"
self.assertEqual(p.name, "u")
def test_3(self):
# smoke test (issue #2154)
x = lay.Cursor.Arrow
x = lay.ButtonState.ShiftKey
x = lay.KeyCode.Escape
# run unit tests
if __name__ == '__main__':
suite = unittest.TestSuite()