Sha256: cf8fcbb803b3769f2ce2ba74306535b6898d69b1da92ae4f675d18fba8793246

Contents?: true

Size: 475 Bytes

Versions: 2

Compression:

Stored size: 475 Bytes

Contents

# frozen_string_literal: true

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

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

  describe 'test attribute "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/delivery_service_spec.rb
noths-0.2.0 spec/models/delivery_service_spec.rb