spec/lib/algebra/operator/parts/formula_spec.rb in dydx-0.0.6 vs spec/lib/algebra/operator/parts/formula_spec.rb in dydx-0.0.7
- old
+ new
@@ -48,8 +48,9 @@
it{ expect((:y - (:y - :x)).to_s).to eq('x') }
it{ expect(((:x * 2) ^ 2).to_s).to eq('( ( x ^ 2 ) * 4 )') }
it{ expect(((:x / 2) ^ 2).to_s).to eq('( ( x ^ 2 ) / 4 )') }
- it{ expect((2 ^ (:x * 2)).to_s).to eq('( ( x ^ 2 ) * 4 )') }
- it{ expect((2 ^ (:x / 2)).to_s).to eq('( ( x ^ 2 ) / 4 )') }
-end
\ No newline at end of file
+ # TODO:
+ it{ expect((2 ^ (:x * 2)).to_s).to eq('( 2 ^ ( x * 2 ) )') }
+ it{ expect((2 ^ (:x / 2)).to_s).to eq('( 2 ^ ( x / 2 ) )') }
+end