()
| 134 | |
| 135 | |
| 136 | def test_pyobjects_toString(): |
| 137 | class MyClass: |
| 138 | def __init__(self): |
| 139 | self.a = 42 |
| 140 | |
| 141 | o = MyClass() |
| 142 | assert '[object Object]' == pm.eval("(obj) => { return obj.toString(); }")(o) |
| 143 | |
| 144 | |
| 145 | def test_pyobjects_toLocaleString(): |