rock_rms 6.0.0 → 6.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 77961a94f240d9f4a1ed89dcc7d2aab06201f9eddc0c93a99d03a752c1360fb1
4
- data.tar.gz: 6fe1e861679fca33ff4a290ad01830f8e49f388d1384add3da83205bed61b69f
3
+ metadata.gz: d62174e5f930871eb31adf696902a1d2ce038aea33439609d0c1a62fa5db5163
4
+ data.tar.gz: 68b82d19df797b7f65f7b86c4465653f7702bda8ecfba54a5100aec5ca318d17
5
5
  SHA512:
6
- metadata.gz: 1d7ab5b4e247dcd9a157871b203d7aafce5363116f9eca4f76cfd601dfed00e4ec42f3047e8ec4e87b5004497608a0ee4cbc31ec92c6d1007544b3da1d8aa3fb
7
- data.tar.gz: f4db4f7623c5d75d0c4b49b76a1f165c98965420068f50d90d25c0ba189ebe396408414c847be36750c581613645f3690928bf63b3d6bbd3045c54ca2b2d17e3
6
+ metadata.gz: 9776eaeb73263e684ccdb9f58fef16a92f2d17b1ae7f54f4f55df4026c0789346fcbf043e6c6757238130b6b61dc7bcdffbf02c26abc7442045581915e51d79f
7
+ data.tar.gz: 81bcc9e6cb711b4aef9627e0097c9067c080978eb182dd86edb399ba461be700ff8c3bc8901872e89020cd30c8698421b46822497b4e79c9f0e52194c7d5aa63
@@ -16,15 +16,17 @@ module RockRMS
16
16
  fund_id: nil,
17
17
  amount: nil,
18
18
  fee_amount: nil,
19
+ fee_coverage_amount: nil,
19
20
  entity_type_id: nil,
20
21
  entity_id: nil
21
22
  )
22
23
  options = {}
23
- options['AccountId'] = fund_id if fund_id
24
- options['Amount'] = amount if amount
25
- options['FeeAmount'] = fee_amount if fee_amount
26
- options['EntityTypeId'] = entity_type_id if entity_type_id
27
- options['EntityId'] = entity_id if entity_id
24
+ options['AccountId'] = fund_id if fund_id
25
+ options['Amount'] = amount if amount
26
+ options['FeeAmount'] = fee_amount if fee_amount
27
+ options['FeeCoverageAmount'] = fee_amount if fee_amount
28
+ options['EntityTypeId'] = entity_type_id if entity_type_id
29
+ options['EntityId'] = entity_id if entity_id
28
30
 
29
31
  patch(transaction_detail_path(id), options)
30
32
  end
@@ -1,3 +1,3 @@
1
1
  module RockRMS
2
- VERSION = '6.0.0'.freeze
2
+ VERSION = '6.0.1'.freeze
3
3
  end
@@ -34,24 +34,49 @@ RSpec.describe RockRMS::Client::TransactionDetail, type: :model do
34
34
  end
35
35
 
36
36
  describe '#update_transaction_detail' do
37
- subject(:resource) do
38
- client.update_transaction_detail(
39
- 123,
40
- fund_id: 2,
41
- )
42
- end
37
+ context 'simple' do
38
+ subject(:resource) do
39
+ client.update_transaction_detail(
40
+ 123,
41
+ fund_id: 2,
42
+ )
43
+ end
44
+
45
+ it 'returns nothing' do
46
+ expect(client.update_transaction_detail(123, fund_id: 5)).to eq(nil)
47
+ end
43
48
 
44
- it 'returns nothing' do
45
- expect(client.update_transaction_detail(123, fund_id: 5)).to eq(nil)
49
+ it 'passes options' do
50
+ expect(client).to receive(:patch)
51
+ .with(
52
+ 'FinancialTransactionDetails/123',
53
+ 'AccountId' => 2
54
+ ).and_call_original
55
+ resource
56
+ end
46
57
  end
47
58
 
48
- it 'passes options' do
49
- expect(client).to receive(:patch)
50
- .with(
51
- 'FinancialTransactionDetails/123',
52
- 'AccountId' => 2
53
- ).and_call_original
54
- resource
59
+ context 'complex' do
60
+ subject(:resource) do
61
+ client.update_transaction_detail(
62
+ 123,
63
+ fund_id: 2,
64
+ fee_amount: 50,
65
+ fee_coverage_amount: 50
66
+ )
67
+ end
68
+
69
+ it 'passes options' do
70
+ expect(client).to receive(:patch)
71
+ .with(
72
+ 'FinancialTransactionDetails/123',
73
+ 'FeeAmount' => 50,
74
+ 'FeeCoverageAmount' => 50,
75
+ 'AccountId' => 2
76
+ ).and_call_original
77
+ resource
78
+ end
55
79
  end
80
+
56
81
  end
57
82
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rock_rms
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.0
4
+ version: 6.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taylor Brooks
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-31 00:00:00.000000000 Z
11
+ date: 2022-05-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday