diff options
Diffstat (limited to 'test/lisp/progmodes/python-tests.el')
| -rw-r--r-- | test/lisp/progmodes/python-tests.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/lisp/progmodes/python-tests.el b/test/lisp/progmodes/python-tests.el index 98b55a5f8bc..ee7b66610aa 100644 --- a/test/lisp/progmodes/python-tests.el +++ b/test/lisp/progmodes/python-tests.el | |||
| @@ -343,6 +343,13 @@ aliqua." | |||
| 343 | 343 | ||
| 344 | (ert-deftest python-font-lock-assignment-statement-17 () | 344 | (ert-deftest python-font-lock-assignment-statement-17 () |
| 345 | (python-tests-assert-faces | 345 | (python-tests-assert-faces |
| 346 | "(a) = (b) = 1" | ||
| 347 | `((1) | ||
| 348 | (2 . font-lock-variable-name-face) (3) | ||
| 349 | (8 . font-lock-variable-name-face) (9)))) | ||
| 350 | |||
| 351 | (ert-deftest python-font-lock-assignment-statement-18 () | ||
| 352 | (python-tests-assert-faces | ||
| 346 | "CustomInt = int | 353 | "CustomInt = int |
| 347 | 354 | ||
| 348 | def f(x: CustomInt) -> CustomInt: | 355 | def f(x: CustomInt) -> CustomInt: |