Your IP : 216.73.216.74


Current Path : /usr/local/python-3.12/lib/python3.12/site-packages/numpy/lib/tests/
Upload File :
Current File : //usr/local/python-3.12/lib/python3.12/site-packages/numpy/lib/tests/test_financial_expired.py

import sys
import pytest
import numpy as np


def test_financial_expired():
    match = 'NEP 32'
    with pytest.warns(DeprecationWarning, match=match):
        func = np.fv
    with pytest.raises(RuntimeError, match=match):
        func(1, 2, 3)