(haystack: str, needles)
| 256 | |
| 257 | |
| 258 | def assert_in_all(haystack: str, needles): |
| 259 | for n in needles: |
| 260 | assert n in haystack, f"expected to find {n!r} in {haystack!r}" |
| 261 | |
| 262 | |
| 263 | # Needed because datetimes generated using .now() have sub millisecond precision which raphtory does not support. |
no outgoing calls