8th day of python challenges 111-117

This commit is contained in:
abd.shallal
2019-08-04 15:26:35 +03:00
parent b04c1b055f
commit 627802c383
3215 changed files with 760227 additions and 491 deletions

View File

@@ -0,0 +1,20 @@
import pytest
class TestSeriesValidate:
"""Tests for error handling related to data types of method arguments."""
@pytest.mark.parametrize(
"func",
["reset_index", "_set_name", "sort_values", "sort_index", "rename", "dropna"],
)
@pytest.mark.parametrize("inplace", [1, "True", [1, 2, 3], 5.0])
def test_validate_bool_args(self, string_series, func, inplace):
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)