Files
modorganizer-plugin_python/tests/python/test_organizer.py
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
329 B
Python
Raw Normal View History

2022-05-02 17:09:36 +02:00
import pytest
from PyQt6.QtWidgets import QWidget
m = pytest.importorskip("mobase_tests.organizer")
def test_getters():
o = m.organizer()
assert o.profileName() == "profile"
assert o.startApplication("") == 4654
assert o.waitForApplication(42) == (False, -1)
assert o.waitForApplication(4654) == (True, 0)