Sha256: b092fd25f97ea810c9427e42e1e995a44d0ec08099101cf2aa6fa05142b4f304

Contents?: true

Size: 1.17 KB

Versions: 18

Compression:

Stored size: 1.17 KB

Contents

require 'spec_helper'

describe Danica::Wrapper::Negative do
  let(:value) { 10 }
  subject { described_class.new(value) }

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

  describe '#to_f' do
    it 'returns the float of value' do
      expect(subject.to_f).to eq(-10)
    end

    it { expect(subject.to_f).to be_a(Float) }
  end

  describe '#to_tex' do
    context 'when value should be integer' do
      let(:value) { 10.0 }

      it 'returns the value integer string' do
        expect(subject.to_tex).to eq('-10')
      end
    end

    context 'when value should be float' do
      let(:value) { 10.5 }

      it 'returns the value float string' do
        expect(subject.to_tex).to eq('-10.5')
      end
    end
  end

  describe '#to_gnu' do
    context 'when value should be integer' do
      let(:value) { 10.0 }

      it 'returns the value integer string' do
        expect(subject.to_gnu).to eq('-10')
      end
    end

    context 'when value should be a float' do
      let(:value) { 10.5 }

      it 'returns the value float string' do
        expect(subject.to_gnu).to eq('-10.5')
      end
    end
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
danica-2.7.4 spec/lib/danica/wrapper/negative_spec.rb
danica-2.7.3 spec/lib/danica/wrapper/negative_spec.rb
danica-2.7.2 spec/lib/danica/wrapper/negative_spec.rb
danica-2.7.1 spec/lib/danica/wrapper/negative_spec.rb
danica-2.6.4 spec/lib/danica/wrapper/negative_spec.rb
danica-2.6.3 spec/lib/danica/wrapper/negative_spec.rb
danica-2.6.2 spec/lib/danica/wrapper/negative_spec.rb
danica-2.6.1 spec/lib/danica/wrapper/negative_spec.rb
danica-2.6.0 spec/lib/danica/wrapper/negative_spec.rb
danica-2.5.1 spec/lib/danica/wrapper/negative_spec.rb
danica-2.5.0 spec/lib/danica/wrapper/negative_spec.rb
danica-2.4.4 spec/lib/danica/wrapper/negative_spec.rb
danica-2.4.3 spec/lib/danica/wrapper/negative_spec.rb
danica-2.4.2 spec/lib/danica/wrapper/negative_spec.rb
danica-2.4.1 spec/lib/danica/wrapper/negative_spec.rb
danica-2.4.0 spec/lib/danica/wrapper/negative_spec.rb
danica-2.3.1 spec/lib/danica/wrapper/negative_spec.rb
danica-2.3.0 spec/lib/danica/wrapper/negative_spec.rb