(version)
| 480 | |
| 481 | @pytest.mark.pandas |
| 482 | def test_timestamp_with_nulls(version): |
| 483 | df = pd.DataFrame({'test': [pd.Timestamp(2016, 1, 1), |
| 484 | None, |
| 485 | pd.Timestamp(2016, 1, 3)]}) |
| 486 | df['with_tz'] = df.test.dt.tz_localize('utc') |
| 487 | |
| 488 | _check_pandas_roundtrip(df, version=version) |
| 489 | |
| 490 | |
| 491 | @pytest.mark.pandas |
nothing calls this directly
no test coverage detected