mirror of
https://github.com/lihop/godot-xterm.git
synced 2025-05-23 11:15:32 +02:00
feat(pty): add cols/rows methods and resize tests
This commit is contained in:
parent
d00a31fb45
commit
0bd0d39f41
4 changed files with 122 additions and 52 deletions
|
@ -13,8 +13,7 @@ class TestInterface:
|
|||
|
||||
# Properties.
|
||||
|
||||
# TODO: Implement cols property.
|
||||
func xtest_has_property_cols() -> void:
|
||||
func test_has_property_cols() -> void:
|
||||
assert_has_property_with_default_value("cols", 80)
|
||||
|
||||
func test_has_property_env() -> void:
|
||||
|
@ -22,8 +21,7 @@ class TestInterface:
|
|||
"env", {"TERM": "xterm-256color", "COLORTERM": "truecolor"}
|
||||
)
|
||||
|
||||
# TODO: Implement rows property.
|
||||
func xtest_has_property_rows() -> void:
|
||||
func test_has_property_rows() -> void:
|
||||
assert_has_property_with_default_value("rows", 24)
|
||||
|
||||
# TODO: Implement terminal_path property.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue