(self, *args)
| 247 | @unittest.skipUnless(sys.platform == "ios", "Test only applicable to iOS") |
| 248 | class IOSBrowserTest(unittest.TestCase): |
| 249 | def _obj_ref(self, *args): |
| 250 | # Construct a string representation of the arguments that can be used |
| 251 | # as a proxy for object instance references |
| 252 | return "|".join(str(a) for a in args) |
| 253 | |
| 254 | @unittest.skipIf(getattr(webbrowser, "objc", None) is None, |
| 255 | "iOS Webbrowser tests require ctypes") |