(version)
| 487 | |
| 488 | @pytest.mark.pandas |
| 489 | def test_timestamp_with_nulls(version): |
| 490 | df = pd.DataFrame({'test': [pd.Timestamp(2016, 1, 1), |
| 491 | None, |
| 492 | pd.Timestamp(2016, 1, 3)]}) |
| 493 | df['with_tz'] = df.test.dt.tz_localize('utc') |
| 494 | |
| 495 | _check_pandas_roundtrip(df, version=version) |
| 496 | |
| 497 | |
| 498 | @pytest.mark.pandas |
nothing calls this directly
no test coverage detected