mirror of
https://github.com/rbreu/beeref.git
synced 2026-03-11 08:54:28 +00:00
12 lines
255 B
Python
12 lines
255 B
Python
from PyQt6 import QtGui
|
|
|
|
from beeref.assets import BeeAssets
|
|
|
|
|
|
def test_singleton(view):
|
|
assert BeeAssets() is BeeAssets()
|
|
assert BeeAssets().logo is BeeAssets().logo
|
|
|
|
|
|
def test_has_logo(view):
|
|
assert isinstance(BeeAssets().logo, QtGui.QIcon)
|