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.
19 lines
634 B
19 lines
634 B
from sympy.core.singleton import S
|
|
from sympy.core.symbol import symbols
|
|
from sympy.parsing.ast_parser import parse_expr
|
|
from sympy.testing.pytest import raises
|
|
from sympy.core.sympify import SympifyError
|
|
|
|
def test_parse_expr():
|
|
a, b = symbols('a, b')
|
|
# tests issue_16393
|
|
assert parse_expr('a + b', {}) == a + b
|
|
raises(SympifyError, lambda: parse_expr('a + ', {}))
|
|
|
|
# tests Transform.visit_Num
|
|
assert parse_expr('1 + 2', {}) == S(3)
|
|
assert parse_expr('1 + 2.0', {}) == S(3.0)
|
|
|
|
# tests Transform.visit_Name
|
|
assert parse_expr('Rational(1, 2)', {}) == S(1)/2
|
|
assert parse_expr('a', {'a': a}) == a
|