Files
MementoMori/kivy/tests/test_filechooser.py
thatscringebro abd15f28b6 Ajout du GUI
2022-08-08 16:31:52 -04: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)