Convenience function returning a readurl test expectation.
(*args, **kwargs)
| 117 | |
| 118 | |
| 119 | def URL(*args, **kwargs): |
| 120 | """Convenience function returning a readurl test expectation.""" |
| 121 | return { |
| 122 | "name": "readurl", |
| 123 | "args": args[:-1], |
| 124 | "ret": args[-1], |
| 125 | "cb": kwargs.get("cb"), |
| 126 | "cwd": None, |
| 127 | } |
| 128 | |
| 129 | |
| 130 | class SimpleMock(object): |