|
| 1 | +# Licensed to Modin Development Team under one or more contributor license agreements. |
| 2 | +# See the NOTICE file distributed with this work for additional information regarding |
| 3 | +# copyright ownership. The Modin Development Team licenses this file to you under the |
| 4 | +# Apache License, Version 2.0 (the "License"); you may not use this file except in |
| 5 | +# compliance with the License. You may obtain a copy of the License at |
| 6 | +# |
| 7 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software distributed under |
| 10 | +# the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF |
| 11 | +# ANY KIND, either express or implied. See the License for the specific language |
| 12 | +# governing permissions and limitations under the License. |
| 13 | + |
| 14 | +import pytest |
| 15 | + |
| 16 | +import modin.pandas |
| 17 | + |
| 18 | + |
| 19 | +def test_dataframe_api_standard() -> None: |
| 20 | + """ |
| 21 | + Test some basic methods of the dataframe consortium standard. |
| 22 | +
|
| 23 | + Full testing is done at https://github.com/data-apis/dataframe-api-compat, |
| 24 | + this is just to check that the entry point works as expected. |
| 25 | + """ |
| 26 | + pytest.importorskip("dataframe_api_compat") |
| 27 | + df_pd = modin.pandas.DataFrame({"a": [1, 2, 3], "b": [4, 5, 6]}) |
| 28 | + df = df_pd.__dataframe_consortium_standard__() |
| 29 | + result_1 = df.get_column_names() |
| 30 | + expected_1 = ["a", "b"] |
| 31 | + assert result_1 == expected_1 |
| 32 | + |
| 33 | + ser = modin.pandas.Series([1, 2, 3]) |
| 34 | + col = ser.__column_consortium_standard__() |
| 35 | + result_2 = col.get_value(1) |
| 36 | + expected_2 = 2 |
| 37 | + assert result_2 == expected_2 |
0 commit comments