Sha256: c0dab33e9769084cfcdd18bfb41758fc6385fd882f77b0279feb3a7ec58e54e0

Contents?: true

Size: 1.16 KB

Versions: 2

Compression:

Stored size: 1.16 KB

Contents

require 'spec_helper'

describe Dydx::Algebra::Operator::Parts::Formula do
  it{ expect(((:a * :b) + (:a * :c)).to_s).to eq('( a * ( b + c ) )') }
  it{ expect(((:b * :a) + (:c * :a)).to_s).to eq('( ( b + c ) * a )') }
  it{ expect(((:a * :b) - (:a * :c)).to_s).to eq('( a * ( b - c ) )') }
  it{ expect(((:b * :a) - (:c * :a)).to_s).to eq('( ( b - c ) * a )') }

  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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dydx-0.0.4 spec/lib/algebra/operator/parts/formula_spec.rb
dydx-0.0.3 spec/lib/algebra/operator/parts/formula_spec.rb