Sha256: 27268e4a4e6a516509784e2448c9ccf8ed7f2cbcfbaca889a48ec5650e868023

Contents?: true

Size: 622 Bytes

Versions: 5

Compression:

Stored size: 622 Bytes

Contents

require 'spec_helper'

describe Danica::Power do
  let(:variables) { [2, 4] }
  subject { described_class.new(*variables) }

  it_behaves_like 'an object that respond to basic_methods'
  it_behaves_like 'an object with basic operation'

  it_behaves_like 'a operator that has two terms', :power, {
    values: [ 3, 2 ],
    calculated: 9.0,
    to_tex: {
      string_expected: 'X1^{X2}',
      numeric_string_expected: '3^{2}',
      partial_string_expected: '3^{X2}'
    },
    to_gnu: {
      string_expected: 'X1**(X2)',
      numeric_string_expected: '3**(2)',
      partial_string_expected: '3**(X2)'
    }
  }
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
danica-2.2.1 spec/lib/danica/power_spec.rb
danica-2.2.0 spec/lib/danica/power_spec.rb
danica-2.1.1 spec/lib/danica/power_spec.rb
danica-2.1.0 spec/lib/danica/power_spec.rb
danica-2.0.6 spec/lib/danica/power_spec.rb