Updated script that can be controled by Nodejs web app

This commit is contained in:
mac OS
2024-11-25 12:24:18 +07:00
parent c440eda1f4
commit 8b0ab2bd3a
8662 changed files with 1803808 additions and 34 deletions

View File

@ -0,0 +1,26 @@
import pytest
@pytest.mark.parametrize(
"func",
[
"reset_index",
"_set_name",
"sort_values",
"sort_index",
"rename",
"dropna",
"drop_duplicates",
],
)
@pytest.mark.parametrize("inplace", [1, "True", [1, 2, 3], 5.0])
def test_validate_bool_args(string_series, func, inplace):
"""Tests for error handling related to data types of method arguments."""
msg = 'For argument "inplace" expected type bool'
kwargs = {"inplace": inplace}
if func == "_set_name":
kwargs["name"] = "hello"
with pytest.raises(ValueError, match=msg):
getattr(string_series, func)(**kwargs)