-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor all pytest of transform.py routines
- Loading branch information
1 parent
e160566
commit 9cddda4
Showing
14 changed files
with
645 additions
and
511 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import warnings | ||
|
||
import pytest | ||
|
||
from slycot import transform as tf | ||
from slycot.exceptions import SlycotArithmeticError | ||
|
||
from .test_exceptions import assert_docstring_parse | ||
|
||
|
||
class Test_tb01id: | ||
|
||
@pytest.mark.skip(reason="not implemented") | ||
def test_tb01id(self): | ||
pass |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import warnings | ||
|
||
import pytest | ||
|
||
from slycot import transform as tf | ||
from slycot.exceptions import SlycotArithmeticError | ||
|
||
from .test_exceptions import assert_docstring_parse | ||
|
||
|
||
class Test_tb01pd: | ||
|
||
@pytest.mark.skip(reason="not implemented") | ||
def test_tb01pd(self): | ||
pass |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import warnings | ||
|
||
import pytest | ||
|
||
from slycot import transform as tf | ||
from slycot.exceptions import SlycotArithmeticError | ||
|
||
from .test_exceptions import assert_docstring_parse | ||
|
||
|
||
class Test_tb03ad: | ||
|
||
@pytest.mark.parametrize( | ||
'fun, exception_class, erange, checkvars', | ||
((tf.tb03ad, SlycotArithmeticError, 2, {}),)) | ||
def test_tb03ad_docparse(self, fun, exception_class, erange, checkvars): | ||
assert_docstring_parse(fun.__doc__, exception_class, erange, checkvars) | ||
|
||
@pytest.mark.skip(reason="not implemented") | ||
def test_tb03ad(self): | ||
pass |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import warnings | ||
|
||
import pytest | ||
|
||
from slycot import transform as tf | ||
from slycot.exceptions import SlycotArithmeticError | ||
|
||
from .test_exceptions import assert_docstring_parse | ||
|
||
|
||
class Test_tb04ad: | ||
|
||
@pytest.mark.skip(reason="not implemented") | ||
def test_tb04ad(self): | ||
pass |
Oops, something went wrong.