Sha256: 410b25aa86eb052c0e7fa932e9d23ef47a48ebbc9394aece93fe6fa72fee98c0

Contents?: true

Size: 1.29 KB

Versions: 44

Compression:

Stored size: 1.29 KB

Contents

require 'spec_helper'

RSpec.describe RockRMS::Client::RefundReason, type: :model do
  include_context 'resource specs'

  describe '#list_refund_reasons' do
    it 'returns a array' do
      resource = client.list_refund_reasons
      expect(resource).to be_a(Array)
      expect(resource.first).to be_a(Hash)
    end
  end

  describe '#create_refund_reason' do
    context 'arguments' do

      it 'require `value`' do
        expect { client.create_refund_reason }
          .to raise_error(ArgumentError, /value/)
      end

      it 'require `description`' do
        expect { client.create_refund_reason }
          .to raise_error(ArgumentError, /description/)
      end

    end

    subject(:resource) do
      client.create_refund_reason(
        value: "Angry Donor",
        description: "Very Very not Happy",
        order: 500,
      )
    end

    it 'returns integer' do
      expect(resource).to be_a(Integer)
    end

    it 'passes options' do
      expect(client).to receive(:post)
        .with(
          'DefinedValues',
          'DefinedTypeId' => 37,
          'IsSystem' => false,
          'Order' => 500,
          'Description' => "Very Very not Happy",
          'Value' => "Angry Donor",
          'IsActive' => false
        )
        .and_call_original
      resource
    end
  end
end

Version data entries

44 entries across 44 versions & 1 rubygems

Version Path
rock_rms-4.12.2 spec/rock_rms/resources/refund_reason_spec.rb
rock_rms-4.12.1 spec/rock_rms/resources/refund_reason_spec.rb
rock_rms-4.11.0 spec/rock_rms/resources/refund_reason_spec.rb
rock_rms-4.10.0 spec/rock_rms/resources/refund_reason_spec.rb