mirror of
https://github.com/pyapp-kit/superqt.git
synced 2025-09-04 16:50:10 +02:00
* feat: addKey method to Iconify * style: [pre-commit.ci] auto fixes [...] * remove breakpoint --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
24 lines
602 B
Python
24 lines
602 B
Python
from typing import TYPE_CHECKING
|
|
|
|
import pytest
|
|
from qtpy.QtGui import QIcon
|
|
from qtpy.QtWidgets import QPushButton
|
|
|
|
from superqt import QIconifyIcon
|
|
|
|
if TYPE_CHECKING:
|
|
from pytestqt.qtbot import QtBot
|
|
|
|
|
|
def test_qiconify(qtbot: "QtBot", monkeypatch: "pytest.MonkeyPatch") -> None:
|
|
monkeypatch.setenv("PYCONIFY_CACHE", "0")
|
|
pytest.importorskip("pyconify")
|
|
|
|
icon = QIconifyIcon("bi:alarm-fill", color="red", flip="vertical")
|
|
icon.addKey("bi:alarm", color="blue", rotate=90, state=QIcon.State.On)
|
|
|
|
btn = QPushButton()
|
|
qtbot.addWidget(btn)
|
|
btn.setIcon(icon)
|
|
btn.show()
|