You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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)
|