Sha256: 72a8e007ccb2a76dd2d8b1b3bd65c0b012cbdd2a5660519dc5d303fed9e8675f

Contents?: true

Size: 823 Bytes

Versions: 6

Compression:

Stored size: 823 Bytes

Contents

require 'spec_helper'

describe Danica::Wrapper::Variable do
  it_behaves_like 'an object that respond to basic_methods'

  it_behaves_like 'an object with basic operation' do
    subject { described_class.new(value: 100) }
  end

  describe '#to_f' do
    context 'when variable has no value' do
      it { expect { subject.to_f }.to raise_error(Danica::Exception::NotDefined) }
    end

    context 'when variable has value' do
      let(:value) { 100 }
      subject { described_class.new(value: value) }

      it 'returns the value' do
        expect(subject.to_f).to eq(value)
      end
    end
  end

  describe '#to_tex' do
    it_behaves_like 'a variable method to formated string', :to_tex, :latex
  end

  describe '#to_gnu' do
    it_behaves_like 'a variable method to formated string', :to_gnu, :gnu
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
danica-2.4.3 spec/lib/danica/wrapper/variable_spec.rb
danica-2.4.2 spec/lib/danica/wrapper/variable_spec.rb
danica-2.4.1 spec/lib/danica/wrapper/variable_spec.rb
danica-2.4.0 spec/lib/danica/wrapper/variable_spec.rb
danica-2.3.1 spec/lib/danica/wrapper/variable_spec.rb
danica-2.3.0 spec/lib/danica/wrapper/variable_spec.rb