diff --git a/tests/test_cli.py b/tests/test_cli.py new file mode 100644 index 000000000..e15bb8c97 --- /dev/null +++ b/tests/test_cli.py @@ -0,0 +1,20 @@ +from unittest import TestCase + +import gi + +gi.require_version('Gtk', '3.0') + + +from lutris.gui.application import Application + + +class TestPrint(TestCase): + + def setUp(self): + self.lutris_application = Application() + + def test_print_steam_list(self): + self.lutris_application.print_steam_list('cmd') + + def test_print_steam_folders(self): + self.lutris_application.print_steam_folders('cmd')