spec/lib/algebra/operator/parts/base_spec.rb in dydx-0.1.4 vs spec/lib/algebra/operator/parts/base_spec.rb in dydx-0.1.25
- old
+ new
@@ -1,8 +1,8 @@
require 'spec_helper'
describe Dydx::Algebra::Operator::Parts::Base do
- it { expect((:x + :x).to_s).to eq('( 2 * x )') }
- it { expect((:x - :x).to_s).to eq('0') }
- it { expect((:x * :x).to_s).to eq('( x ** 2 )') }
- it { expect((:x / :x).to_s).to eq('1') }
-end
+ it{ expect((:x + :x).to_s).to eq('( 2 * x )') }
+ it{ expect((:x - :x).to_s).to eq('0') }
+ it{ expect((:x * :x).to_s).to eq('( x ^ 2 )') }
+ it{ expect((:x / :x).to_s).to eq('1') }
+end
\ No newline at end of file