finapps 2.2.19 → 2.2.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/finapps/rest/client.rb +1 -0
- data/lib/finapps/version.rb +1 -1
- data/spec/rest/client_spec.rb +5 -1
- data/spec/rest/institutions_spec.rb +0 -1
- data/spec/support/fake_api.rb +0 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9610a61e7965c36b87af664ac1e86dcd3970dd07
|
|
4
|
+
data.tar.gz: 4776a8fac95ed1486e83b9e1e253a8c0a2ff5efe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f0b15c4f7294e8f7bd3743c5bc86e336fb5545bd4643368e690e9f0ce02e31f16ae6e32fa9e32fc4899b91c3f7c7b8c08357896f81eee29497083897af7a7045
|
|
7
|
+
data.tar.gz: 2d65c6d31ee6e6d465939439eb8ccc3a80a6406c1ba7152924c372256d4eff029af3249dcc14ab7774cfc3f2ecdfeaa26e933ae40121916bdae02fc5f4f924a4
|
data/lib/finapps/rest/client.rb
CHANGED
data/lib/finapps/version.rb
CHANGED
data/spec/rest/client_spec.rb
CHANGED
|
@@ -71,7 +71,11 @@ RSpec.describe FinApps::REST::Client do
|
|
|
71
71
|
it { expect(subject.password_resets).to be_an_instance_of(FinApps::REST::PasswordResets) }
|
|
72
72
|
end
|
|
73
73
|
|
|
74
|
-
describe '#
|
|
74
|
+
describe '#operators_password_resets' do
|
|
75
|
+
it { expect(subject.operators_password_resets).to be_an_instance_of(FinApps::REST::OperatorsPasswordResets) }
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
describe '#operators' do
|
|
75
79
|
it { expect(subject.operators).to be_an_instance_of(FinApps::REST::Operators) }
|
|
76
80
|
end
|
|
77
81
|
|
|
@@ -38,7 +38,6 @@ RSpec.describe FinApps::REST::Institutions do
|
|
|
38
38
|
it('includes a org_display_name on the results') { expect(show[RESULTS]).to respond_to(:org_display_name) }
|
|
39
39
|
end
|
|
40
40
|
|
|
41
|
-
|
|
42
41
|
context 'when proper site_id is provided' do
|
|
43
42
|
# A site_id has less than 9 digits
|
|
44
43
|
let(:show) { subject.show('5') }
|
data/spec/support/fake_api.rb
CHANGED
|
@@ -54,7 +54,6 @@ class FakeApi < Sinatra::Base
|
|
|
54
54
|
get('/v2/institutions/routing/:routing_number') { json_response 200, 'institutions_routing_number.json' }
|
|
55
55
|
get('/v2/institutions/site/:site_id') { json_response 200, 'institutions_routing_number.json' }
|
|
56
56
|
|
|
57
|
-
|
|
58
57
|
# user institutions
|
|
59
58
|
get('/v2/institutions/consumer/valid_id/status') { json_response 200, 'user_institution_status.json' }
|
|
60
59
|
get('/v2/institutions/consumer/invalid_id/status') { json_response 400, 'invalid_user_institution_id.json' }
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: finapps
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2.
|
|
4
|
+
version: 2.2.20
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Erich Quintero
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-06-
|
|
11
|
+
date: 2017-06-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: finapps_core
|