Files
KPK/v3.12/Lib/site-packages/kivy/tests/test_filechooser.py
T
2026-06-23 15:20:56 +02:00

12 lines
331 B
Python

from kivy.tests.common import GraphicUnitTest
class FileChooserTestCase(GraphicUnitTest):
def test_filechooserlistview(self):
from kivy.uix.filechooser import FileChooserListView
from os.path import expanduser
r = self.render
wid = FileChooserListView(path=expanduser('~'))
r(wid, 2)