mirror of
https://github.com/gsi-upm/senpy
synced 2025-08-23 18:12:20 +00:00
Added Model string representation
This should help with performance issues with models that have large private variables.
This commit is contained in:
@@ -100,5 +100,16 @@ class ModelsTest(TestCase):
|
||||
logging.debug(c)
|
||||
p.validate()
|
||||
|
||||
def test_str(self):
|
||||
"""The string representation shouldn't include private variables"""
|
||||
r = Results()
|
||||
p = SenpyPlugin({"name": "STR test", "version": 0})
|
||||
p._testing = 0
|
||||
s = str(p)
|
||||
assert "_testing" not in s
|
||||
r.analysis.append(p)
|
||||
s = str(r)
|
||||
assert "_testing" not in s
|
||||
|
||||
def test_frame_response(self):
|
||||
pass
|
||||
|
Reference in New Issue
Block a user