mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-07-04 07:08:05 +00:00
first commit
This commit is contained in:
@ -0,0 +1,12 @@
|
||||
import pytest
|
||||
|
||||
import pandas as pd
|
||||
|
||||
pytest.importorskip("pyarrow", minversion="1.0.0")
|
||||
|
||||
|
||||
def test_constructor_from_list():
|
||||
# GH 27673
|
||||
result = pd.Series(["E"], dtype=pd.StringDtype(storage="pyarrow"))
|
||||
assert isinstance(result.dtype, pd.StringDtype)
|
||||
assert result.dtype.storage == "pyarrow"
|
Reference in New Issue
Block a user