Sha256: 2e7c40ac271dcc5c43eb078bce6cf76cc9e6920d494e813da3d38df122964f0e

Contents?: true

Size: 560 Bytes

Versions: 2

Compression:

Stored size: 560 Bytes

Contents

require 'spec_helper'

describe Danica::Sum do
  subject { described_class.new(10, 2) }

  it_behaves_like 'an object with + operation'

  it_behaves_like 'a operator that joins many variables with same operation', {
    calculated: 10,
    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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
danica-2.0.3 spec/lib/danica/sum_spec.rb
danica-2.0.2 spec/lib/danica/sum_spec.rb