Sha256: b23fcb25d4b27dfb480456d35c1f82b296263473cf532955b44d8499bd080c2e

Contents?: true

Size: 966 Bytes

Versions: 1

Compression:

Stored size: 966 Bytes

Contents

require 'spec_helper'

describe Danica::Product do
  subject { described_class.new(2,4) }
  it_behaves_like 'an object that respond to basic_methods'

  it_behaves_like 'an object with * operation' do
    let(:subject_included) { 4 }

    context 'when other is also a sum' do
      let(:other) { described_class.new(200, 5) }

      it 'includes the sum parcels' do
        expect(result).to include(200)
      end
    end
  end
  it_behaves_like 'an object with basic operation', ignore: :*

  it_behaves_like 'a operator that joins many variables with same operation', {
    calculated: 24,
    numeric_variables: [ 1.5, 2, 3.5 ],
    to_tex: { 
      string_expected: %w(X1 X2 X3 X4).join(' \cdot '),
      integer_expected: %w(3 X3 X4).join(' \cdot '),
      float_expected: '10.5 \cdot X4'
    },
    to_gnu: {
      string_expected: %w(X1 X2 X3 X4).join(' * '),
      integer_expected: %w(3 X3 X4).join(' * '),
      float_expected: '10.5 * X4'
    }
  }
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
danica-2.0.4 spec/lib/danica/product_spec.rb