diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2018-10-11 06:22:03 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-11 06:22:03 -0700 |
commit | 9c4cb99f968ec6f33548ed1bfe04079f0f3932f7 (patch) | |
tree | 9211cb5810122b6cb828734d4e8885c396edf875 /numpy/lib/tests/test_index_tricks.py | |
parent | 57100ac2a776f86bad868f9f0b4b9d948a4033dc (diff) | |
parent | a3bb6fc35e1ce41df94847decda38bf4742cc514 (diff) | |
download | numpy-9c4cb99f968ec6f33548ed1bfe04079f0f3932f7.tar.gz |
Merge pull request #12138 from tylerjereddy/diag_indices_from_err_test
TST: error tests for diag_indices_from()
Diffstat (limited to 'numpy/lib/tests/test_index_tricks.py')
-rw-r--r-- | numpy/lib/tests/test_index_tricks.py | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/numpy/lib/tests/test_index_tricks.py b/numpy/lib/tests/test_index_tricks.py index 33b98629d..aa3c7b8a4 100644 --- a/numpy/lib/tests/test_index_tricks.py +++ b/numpy/lib/tests/test_index_tricks.py @@ -365,11 +365,23 @@ def test_diag_indices(): ) -def test_diag_indices_from(): - x = np.random.random((4, 4)) - r, c = diag_indices_from(x) - assert_array_equal(r, np.arange(4)) - assert_array_equal(c, np.arange(4)) +class TestDiagIndicesFrom(object): + + def test_diag_indices_from(self): + x = np.random.random((4, 4)) + r, c = diag_indices_from(x) + assert_array_equal(r, np.arange(4)) + assert_array_equal(c, np.arange(4)) + + def test_error_small_input(self): + x = np.ones(7) + with assert_raises_regex(ValueError, "at least 2-d"): + diag_indices_from(x) + + def test_error_shape_mismatch(self): + x = np.zeros((3, 3, 2, 3), int) + with assert_raises_regex(ValueError, "equal length"): + diag_indices_from(x) def test_ndindex(): |