Intelegentny_Pszczelarz/.venv/Lib/site-packages/numpy/lib/tests/test_financial_expired.py
2023-06-19 00:49:18 +02:00

12 lines
247 B
Python

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)