Sha256: 58d27236393cae850813d8c9c7a1b40eafbcd345575345bd7cef4793e2ef1a67

Contents?: true

Size: 589 Bytes

Versions: 2

Compression:

Stored size: 589 Bytes

Contents

# frozen_string_literal: true

# Unit tests for Noths::Currency
describe 'Currency' do
  let(:instance) { Noths::Currency.new }

  describe 'test an instance of Currency' do
    it 'should create an instance of Currency' do
      expect(instance).to be_instance_of(Noths::Currency)
    end
  end
  describe 'test attribute "subunit_to_unit"' do
    it 'should work'
  end

  describe 'test attribute "symbol"' do
    it 'should work'
  end

  describe 'test attribute "html_entity"' do
    it 'should work'
  end

  describe 'test attribute "iso_code"' do
    it 'should work'
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
noths-0.2.1 spec/models/currency_spec.rb
noths-0.2.0 spec/models/currency_spec.rb