()
| 362 | |
| 363 | |
| 364 | def test_toLocaleString(): |
| 365 | items = {'a': 10} |
| 366 | result = [0] |
| 367 | pm.eval("(result, obj) => {result[0] = obj.toLocaleString()}")(result, items) |
| 368 | assert result[0] == '[object Object]' |
| 369 | |
| 370 | |
| 371 | # __class__ |
nothing calls this directly
no outgoing calls
no test coverage detected