spec/lib/danica/function/sum_spec.rb in danica-0.3.0 vs spec/lib/danica/function/sum_spec.rb in danica-1.0.0
- old
+ new
@@ -1,11 +1,18 @@
require 'spec_helper'
describe Danica::Function::Sum do
it_behaves_like 'a function that joins many variables with same operation', {
calculated: 10,
- tex_expected: 'X1 + X2 + X3 + X4',
- tex_integer_expected: '4 + X3 + X4',
- tex_float_expected: '7.5 + X4',
- numeric_variables: [ 1.5, 2.5, 3.5 ]
+ numeric_variables: [ 1.5, 2.5, 3.5 ],
+ to_tex: {
+ string_expected: 'X1 + X2 + X3 + X4',
+ integer_expected: '4 + X3 + X4',
+ float_expected: '7.5 + X4'
+ },
+ to_gnu: {
+ string_expected: 'X1 + X2 + X3 + X4',
+ integer_expected: '4 + X3 + X4',
+ float_expected: '7.5 + X4'
+ }
}
end