(version)
| 325 | |
| 326 | @pytest.mark.pandas |
| 327 | def test_boolean_no_nulls(version): |
| 328 | num_values = 100 |
| 329 | |
| 330 | np.random.seed(0) |
| 331 | |
| 332 | df = pd.DataFrame({'bools': np.random.randn(num_values) > 0}) |
| 333 | _check_pandas_roundtrip(df, version=version) |
| 334 | |
| 335 | |
| 336 | @pytest.mark.pandas |
nothing calls this directly
no test coverage detected