(generator_class)
| 57 | |
| 58 | |
| 59 | def test_serializability(generator_class): |
| 60 | state = generator_class(5) |
| 61 | x = state.normal(10, 1, size=10, chunks=5) |
| 62 | |
| 63 | y = _loads(_dumps(x)) |
| 64 | |
| 65 | assert_eq(x, y) |
| 66 | |
| 67 | |
| 68 | def test_determinism_through_dask_values(generator_class): |
nothing calls this directly
no test coverage detected
searching dependent graphs…