(**options)
| 424 | |
| 425 | |
| 426 | def with_connection_options(**options): |
| 427 | if not options: |
| 428 | raise ValueError('no connection options were specified') |
| 429 | |
| 430 | def wrap(func): |
| 431 | func.__connect_options__ = options |
| 432 | return func |
| 433 | |
| 434 | return wrap |
| 435 | |
| 436 | |
| 437 | class ConnectedTestCase(ClusterTestCase): |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…