mirror of https://github.com/flaggo/pydu.git
8 lines
152 B
Python
8 lines
152 B
Python
![]() |
from pydu.console import console_size
|
||
|
|
||
|
|
||
|
def test_console_size():
|
||
|
size = console_size()
|
||
|
assert isinstance(size, tuple)
|
||
|
assert len(size) == 2
|