6 lines
154 B
Python
6 lines
154 B
Python
|
from sympy.physics.mechanics.method import _Methods
|
||
|
from sympy.testing.pytest import raises
|
||
|
|
||
|
def test_method():
|
||
|
raises(TypeError, lambda: _Methods())
|