forked from pandas-dev/pandas
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TST: Check more error messages in tests
Closes pandas-devgh-16521.
- Loading branch information
Showing
2 changed files
with
30 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,26 @@ | ||
import pytest | ||
from pandas.core.series import Series | ||
|
||
import pytest | ||
import pandas.util.testing as tm | ||
|
||
|
||
class TestSeriesValidate(object): | ||
"""Tests for error handling related to data types of method arguments.""" | ||
s = Series([1, 2, 3, 4, 5]) | ||
|
||
def test_validate_bool_args(self): | ||
# Tests for error handling related to boolean arguments. | ||
invalid_values = [1, "True", [1, 2, 3], 5.0] | ||
|
||
for value in invalid_values: | ||
with pytest.raises(ValueError): | ||
self.s.reset_index(inplace=value) | ||
|
||
with pytest.raises(ValueError): | ||
self.s._set_name(name='hello', inplace=value) | ||
|
||
with pytest.raises(ValueError): | ||
self.s.sort_values(inplace=value) | ||
@classmethod | ||
def setup_class(cls): | ||
cls.s = Series([1, 2, 3, 4, 5]) | ||
|
||
with pytest.raises(ValueError): | ||
self.s.sort_index(inplace=value) | ||
@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, func, inplace): | ||
msg = "For argument \"inplace\" expected type bool" | ||
kwargs = dict(inplace=inplace) | ||
|
||
with pytest.raises(ValueError): | ||
self.s.rename(inplace=value) | ||
if func == "_set_name": | ||
kwargs["name"] = "hello" | ||
|
||
with pytest.raises(ValueError): | ||
self.s.dropna(inplace=value) | ||
with tm.assert_raises_regex(ValueError, msg): | ||
getattr(self.s, func)(**kwargs) |