self.expr = self.x - 2*self.y + 3
def test_new(self):
- self.assertIsInstance(self.x, Symbol)
- self.assertIsInstance(self.pi, Rational)
+ self.assertIsInstance(Expression(coefficients={self.x: 1}), Symbol)
+ self.assertIsInstance(Expression(constant=self.pi), Rational)
self.assertNotIsInstance(self.x + self.pi, Symbol)
self.assertNotIsInstance(self.x + self.pi, Rational)
xx = Expression({self.x: 2})