[Libosinfo] [PATCH osinfo-db 2/7] tests: osinfo: Add some pretty printing for Os objects

Cole Robinson crobinso at redhat.com
Wed Mar 20 21:53:21 UTC 2019


str(osobj) now prints the shortid, this helps debugging

Signed-off-by: Cole Robinson <crobinso at redhat.com>
---
 tests/osinfo.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tests/osinfo.py b/tests/osinfo.py
index 0c58f0a..454170d 100644
--- a/tests/osinfo.py
+++ b/tests/osinfo.py
@@ -27,6 +27,9 @@ class Os():
         self._root = root
         self._cache = {}
 
+    def __repr__(self):
+        return "<%s shortid=%s>" % (self.__class__.__name__, self.shortid)
+
     def _get_id(self):
         return self._root.get('id')
     internal_id = _cache_property(_get_id)
-- 
2.21.0




More information about the Libosinfo mailing list