Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TST: Fixturize series/test_validate.py #22756

Merged
merged 5 commits into from
Sep 25, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions pandas/tests/series/test_validate.py
Original file line number Diff line number Diff line change
@@ -1,27 +1,20 @@
from pandas.core.series import Series

import pytest
import pandas.util.testing as tm


@pytest.fixture
def series():
return Series([1, 2, 3, 4, 5])


class TestSeriesValidate(object):
"""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, series, func, inplace):
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 tm.assert_raises_regex(ValueError, msg):
getattr(series, func)(**kwargs)
getattr(string_series, func)(**kwargs)