spec/lib/algebra/operator/parts/formula_spec.rb in dydx-0.0.2 vs spec/lib/algebra/operator/parts/formula_spec.rb in dydx-0.0.3
- old
+ new
@@ -8,6 +8,18 @@
it{ expect(((:x ^ 3) * (:x ^ 2)).to_s).to eq('( x ^ 5 )') }
it{ expect(((:x ^ 3) / (:x ^ 2)).to_s).to eq('x') }
it{ expect(((:x ^ :n) * (:y ^ :n)).to_s).to eq('( ( x * y ) ^ n )') }
it{ expect(((:x ^ :n) / (:y ^ :n)).to_s).to eq('( ( x / y ) ^ n )') }
+
+ it{ expect(((:x - 2) + 2).to_s).to eq('x') }
+ it{ expect(((:x + 2) - 2).to_s).to eq('x') }
+ it{ expect(((:x * 2) / 2).to_s).to eq('x') }
+ it{ expect(((:x / 2) * 2).to_s).to eq('x') }
+
+ it{ expect(((:x + :y) + :y).to_s).to eq('( x + ( 2 * y ) )') }
+ it{ expect(((:x - :y) - :y).to_s).to eq('( x - ( 2 * y ) )') }
+ it{ expect(((:y - :x) - :y).to_s).to eq('( - x )') }
+ it{ expect(((:x * :y) * :y).to_s).to eq('( x * ( y ^ 2 ) )') }
+ it{ expect(((:x / :y) / :y).to_s).to eq('( x / ( y ^ 2 ) )') }
+ it{ expect(((:y / :x) / :y).to_s).to eq('( 1 / x )') }
end
\ No newline at end of file