Update tests/test_utils_pv.py
Run CI Tests / test (push) Successful in 1m0s

This commit is contained in:
2025-08-05 17:12:15 +02:00
parent 19b199d2d7
commit 7882c92460
+7 -2
View File
@@ -7,9 +7,14 @@ from io import StringIO
import colorama
from slic.utils.pv import PV
pv = PV("TEST:VAL")
print("PV backend:", type(PV))
import logging
logging.warning("PV MRO: %s", PV.__mro__)
print("✅ PV instance class:", pv.__class__)
print("PV module origin:", pv.__class__.__module__)
print("✅ PV class name:", pv.__class__.__name__)
print("✅ PV full repr:", repr(pv))
print("✅ PV dir:", dir(pv))
'''