1
0
Fork 0
Old engine for Continuous Time Bayesian Networks. Superseded by reCTBN. 🐍 https://github.com/madlabunimib/PyCTBN
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
PyCTBN/venv/lib/python3.9/site-packages/pandas/tests/series/test_validate.py

26 lines
669 B

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 = dict(inplace=inplace)
if func == "_set_name":
kwargs["name"] = "hello"
with pytest.raises(ValueError, match=msg):
getattr(string_series, func)(**kwargs)