()
| 78 | |
| 79 | @pytest.mark.pandas |
| 80 | def test_datetime_timezone_tzinfo(): |
| 81 | value = datetime.datetime(2018, 1, 1, 1, 23, 45, |
| 82 | tzinfo=datetime.timezone.utc) |
| 83 | df = pd.DataFrame({'foo': [value]}) |
| 84 | |
| 85 | _roundtrip_pandas_dataframe(df, write_kwargs={}) |
| 86 | |
| 87 | |
| 88 | @pytest.mark.pandas |
nothing calls this directly
no test coverage detected