Skip to content

Commit

Permalink
Added tests
Browse files Browse the repository at this point in the history
  • Loading branch information
anutosh491 committed Oct 9, 2023
1 parent 6e2de36 commit 1830fc9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions integration_tests/symbolics_01.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ def main0():
y: S = Symbol('y')
x = pi
z: S = x + y
x = z
print(x)
print(z)
assert(x == z)
assert(z == pi + y)
assert(z != S(2)*pi + y)

Expand Down

0 comments on commit 1830fc9

Please sign in to comment.