finapps 2.3.7 → 3.0.1
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/finapps.gemspec +1 -1
- data/lib/finapps/rest/operators.rb +1 -1
- data/lib/finapps/rest/orders.rb +7 -22
- data/lib/finapps/version.rb +1 -1
- data/spec/rest/operators_spec.rb +2 -2
- data/spec/rest/orders_spec.rb +6 -8
- data/spec/support/fake_api.rb +79 -79
- metadata +27 -27
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b28eaaba505b38dbf47b8f9fb74e4bb1478d2a8a
|
4
|
+
data.tar.gz: fdf4b1abd598e3dab0efa6ba14956c7e45d381a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a93c7e1cd35d82a67ae70984fe08e20fa0b1e01ca3bd40c045301717c89d15a9606e1c9f3d6738d35a4b2c1979ff2d7aab90adb4bdc9f83945069d435379c609
|
7
|
+
data.tar.gz: 975f0c53282073c53ecf6b1dfc9a8790eaf306d536431dd734efe735332a1e14c0a9fa05a4c2cb759e699ceec7e13944c79f854b5d797d3c6afa138fe3846613
|
data/finapps.gemspec
CHANGED
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
|
|
21
21
|
spec.test_files = Dir['spec/**/*.rb']
|
22
22
|
spec.require_paths = ['lib']
|
23
23
|
|
24
|
-
spec.add_runtime_dependency 'finapps_core', '~>
|
24
|
+
spec.add_runtime_dependency 'finapps_core', '~> 3.0', '>= 3.0.1'
|
25
25
|
|
26
26
|
spec.add_development_dependency 'bundler', '~> 1.15', '>= 1.15.4'
|
27
27
|
spec.add_development_dependency 'codeclimate-test-reporter', '~> 1.0', '>= 1.0.8'
|
data/lib/finapps/rest/orders.rb
CHANGED
@@ -17,7 +17,7 @@ module FinApps
|
|
17
17
|
super params
|
18
18
|
end
|
19
19
|
|
20
|
-
# GET /
|
20
|
+
# GET /v3/list/orders?page=1&requested=25&sort=-date
|
21
21
|
# :page - page number requested
|
22
22
|
# :requested - number of results per page requested
|
23
23
|
# :sort - sort order
|
@@ -62,27 +62,12 @@ module FinApps
|
|
62
62
|
|
63
63
|
def search_query(term)
|
64
64
|
{
|
65
|
-
"$or": [
|
66
|
-
"public_id":
|
67
|
-
|
68
|
-
|
69
|
-
}
|
70
|
-
|
71
|
-
"applicant.last_name": {
|
72
|
-
"$regex": term,
|
73
|
-
"$options": 'i'
|
74
|
-
}
|
75
|
-
}, {
|
76
|
-
"assignment.last_name": {
|
77
|
-
"$regex": term,
|
78
|
-
"$options": 'i'
|
79
|
-
}
|
80
|
-
}, {
|
81
|
-
"requestor.reference_no": {
|
82
|
-
"$regex": "^#{term}",
|
83
|
-
"$options": 'i'
|
84
|
-
}
|
85
|
-
}]
|
65
|
+
"$or": [
|
66
|
+
{"public_id": term},
|
67
|
+
{"applicant.last_name": term},
|
68
|
+
{"assignment.last_name": term},
|
69
|
+
{"requestor.reference_no": term}
|
70
|
+
]
|
86
71
|
}
|
87
72
|
end
|
88
73
|
|
data/lib/finapps/version.rb
CHANGED
data/spec/rest/operators_spec.rb
CHANGED
@@ -34,8 +34,8 @@ RSpec.describe FinApps::REST::Operators, 'initialized with valid FinApps::Client
|
|
34
34
|
it('returns no error messages') { expect(error_messages).to be_empty }
|
35
35
|
it 'builds query and sends proper request' do
|
36
36
|
list
|
37
|
-
url = "#{FinAppsCore::REST::Defaults::DEFAULTS[:host]}/
|
38
|
-
'%
|
37
|
+
url = "#{FinAppsCore::REST::Defaults::DEFAULTS[:host]}/v3/operators?filter=%7B%22last_name%22:%22term%22," \
|
38
|
+
'%22role%22:2%7D&page=2&requested=25&sort=date_created'
|
39
39
|
expect(WebMock).to have_requested(:get, url)
|
40
40
|
end
|
41
41
|
end
|
data/spec/rest/orders_spec.rb
CHANGED
@@ -88,18 +88,16 @@ RSpec.describe FinApps::REST::Orders do
|
|
88
88
|
it('returns no error messages') { expect(subject[ERROR_MESSAGES]).to be_empty }
|
89
89
|
it 'builds query and sends proper request' do
|
90
90
|
subject
|
91
|
-
url = "#{FinAppsCore::REST::Defaults::DEFAULTS[:host]}/
|
92
|
-
'%
|
93
|
-
'%22:%22term%22
|
94
|
-
'%22
|
95
|
-
'%22:%22i%22%7D%7D%5D,%22status%22:%7B%22$in%22:%5B1,7%5D%7D,%22assignment.operator_id%22:%22' \
|
96
|
-
'valid_operator%22%7D&page=2&requested=25&sort=status'
|
91
|
+
url = "#{FinAppsCore::REST::Defaults::DEFAULTS[:host]}/v3/orders?filter=%7B%22$or%22:%5B%7B%22public_id%22" \
|
92
|
+
':%22term%22%7D,%7B%22applicant.last_name%22:%22term%22%7D,%7B%22assignment.last_name%22:%22term%22%7D' \
|
93
|
+
',%7B%22requestor.reference_no%22:%22term%22%7D%5D,%22status%22:%7B%22$in%22:%5B1,7%5D%7D,%22' \
|
94
|
+
'assignment.operator_id%22:%22valid_operator%22%7D&page=2&requested=25&sort=status'
|
97
95
|
expect(WebMock).to have_requested(:get, url)
|
98
96
|
end
|
99
97
|
it 'builds query and sends proper request with searchTerm/relation exclusivity' do
|
100
98
|
params[:searchTerm] = nil
|
101
99
|
subject
|
102
|
-
url = "#{FinAppsCore::REST::Defaults::DEFAULTS[:host]}/
|
100
|
+
url = "#{FinAppsCore::REST::Defaults::DEFAULTS[:host]}/v3/orders?filter=%7B%22status%22:%7B%22$in%22:%5B1," \
|
103
101
|
'7%5D%7D,%22assignment.operator_id%22:%22valid_operator%22,%22$or%22:%5B%7B%22public_id%22:%7B%22$in' \
|
104
102
|
'%22:%5B%22valid_order_id%22%5D%7D%7D,%7B%22original_order_id%22:%7B%22$in%22:%5B%22valid_order_id%22' \
|
105
103
|
'%5D%7D%7D%5D%7D&page=2&requested=25&sort=status'
|
@@ -108,7 +106,7 @@ RSpec.describe FinApps::REST::Orders do
|
|
108
106
|
it 'builds null assignment query properly when supplied w/ empty string' do
|
109
107
|
FinApps::REST::Orders.new(client).list(assignment: '')
|
110
108
|
|
111
|
-
url = "#{FinAppsCore::REST::Defaults::DEFAULTS[:host]}/
|
109
|
+
url = "#{FinAppsCore::REST::Defaults::DEFAULTS[:host]}/v3/orders?filter=%7B%22assignment.operator_id%22:null%7D"
|
112
110
|
expect(WebMock).to have_requested(:get, url)
|
113
111
|
end
|
114
112
|
end
|
data/spec/support/fake_api.rb
CHANGED
@@ -5,32 +5,32 @@ require 'sinatra/base'
|
|
5
5
|
# the FakeApi class is used to mock API requests while testing.
|
6
6
|
class FakeApi < Sinatra::Base
|
7
7
|
# resource
|
8
|
-
post('/
|
9
|
-
get('/
|
10
|
-
get('/
|
11
|
-
put('/
|
12
|
-
delete('/
|
8
|
+
post('/v3/resources') { json_response 201, 'resource.json' }
|
9
|
+
get('/v3/resources/:id') { json_response 200, 'resource.json' }
|
10
|
+
get('/v3/resources') { json_response 200, 'resources.json' }
|
11
|
+
put('/v3/resources') { json_response 201, 'resource.json' }
|
12
|
+
delete('/v3/resources/:id') { status 202 }
|
13
13
|
|
14
14
|
# version
|
15
|
-
get('/
|
15
|
+
get('/v3/version') { 'Version => 2.1.29-.20161208.172810' }
|
16
16
|
|
17
17
|
# orders
|
18
|
-
post('/
|
19
|
-
post('/
|
20
|
-
get('/
|
21
|
-
get('/
|
22
|
-
get('/
|
23
|
-
get('/
|
24
|
-
get('/
|
25
|
-
get('/
|
26
|
-
put('/
|
27
|
-
put('/
|
28
|
-
put('/
|
29
|
-
put('/
|
30
|
-
put('/
|
31
|
-
put('/
|
32
|
-
put('/
|
33
|
-
put('/
|
18
|
+
post('/v3/orders/valid_token') { json_response 200, 'order_token.json' }
|
19
|
+
post('/v3/orders/invalid_token') { json_response 404, 'resource_not_found.json' }
|
20
|
+
get('/v3/orders/valid_id') { json_response 200, 'order.json' }
|
21
|
+
get('/v3/orders') { json_response 200, 'orders.json' }
|
22
|
+
get('/v3/orders/valid_id/report.:format') { json_response 200, 'order_report.json' }
|
23
|
+
get('/v3/orders/invalid_id/report.:format') { json_response 404, 'resource_not_found.json' }
|
24
|
+
get('/v3/orders/valid_id/status') { json_response 200, 'order_status.json' }
|
25
|
+
get('/v3/orders/invalid_id/status') { json_response 404, 'resource_not_found.json' }
|
26
|
+
put('/v3/orders/valid_id/cancel') { status 204 }
|
27
|
+
put('/v3/orders/invalid_id/cancel') { json_response 404, 'resource_not_found.json' }
|
28
|
+
put('/v3/orders/valid_id/notify') { status 204 }
|
29
|
+
put('/v3/orders/invalid_id/notify') { json_response 404, 'resource_not_found.json' }
|
30
|
+
put('/v3/orders/valid_id/refresh') { json_response 200, 'order_refresh.json' }
|
31
|
+
put('/v3/orders/invalid_id/refresh') { json_response 404, 'resource_not_found.json' }
|
32
|
+
put('/v3/orders/invalid_id') { json_response 404, 'resource_not_found.json' }
|
33
|
+
put('/v3/orders/valid_id') do
|
34
34
|
request.body.rewind
|
35
35
|
request_payload = JSON.parse request.body.read
|
36
36
|
if request_payload['accounts'] == 'valid_account'
|
@@ -39,7 +39,7 @@ class FakeApi < Sinatra::Base
|
|
39
39
|
json_response 400, 'invalid_request_body.json'
|
40
40
|
end
|
41
41
|
end
|
42
|
-
post('/
|
42
|
+
post('/v3/orders') do
|
43
43
|
request.body.rewind
|
44
44
|
request_payload = JSON.parse request.body.read
|
45
45
|
if %w(applicant institutions product).all? {|s| request_payload.key? s }
|
@@ -50,57 +50,57 @@ class FakeApi < Sinatra::Base
|
|
50
50
|
end
|
51
51
|
|
52
52
|
# institutions
|
53
|
-
get('/
|
54
|
-
get('/
|
55
|
-
post('/
|
56
|
-
get('/
|
57
|
-
get('/
|
58
|
-
get('/
|
53
|
+
get('/v3/institutions/site/valid_site_id/form') { json_response 200, 'institution_login_form.json' }
|
54
|
+
get('/v3/institutions/site/invalid_site_id/form') { json_response 400, 'invalid_institution_id.json' }
|
55
|
+
post('/v3/institutions/site/valid_site_id/add') { json_response 200, 'institution_add.json' }
|
56
|
+
get('/v3/institutions/search/:search_term') { json_response 200, 'institutions_search_list.json' }
|
57
|
+
get('/v3/institutions/routing/:routing_number') { json_response 200, 'institutions_routing_number.json' }
|
58
|
+
get('/v3/institutions/site/:site_id') { json_response 200, 'institutions_routing_number.json' }
|
59
59
|
|
60
60
|
# user institutions
|
61
|
-
get('/
|
62
|
-
get('/
|
63
|
-
get('/
|
64
|
-
get('/
|
65
|
-
get('/
|
66
|
-
put('/
|
67
|
-
put('/
|
68
|
-
put('/
|
69
|
-
put('/
|
70
|
-
put('/
|
71
|
-
delete('/
|
72
|
-
delete('/
|
73
|
-
get('/
|
74
|
-
get('/
|
75
|
-
put('/
|
61
|
+
get('/v3/institutions/consumer/valid_id/status') { json_response 200, 'user_institution_status.json' }
|
62
|
+
get('/v3/institutions/consumer/invalid_id/status') { json_response 400, 'invalid_user_institution_id.json' }
|
63
|
+
get('/v3/institutions/consumer') { json_response 200, 'user_institutions_list.json' }
|
64
|
+
get('/v3/institutions/consumer/valid_id') { json_response 200, 'user_institutions_show.json' }
|
65
|
+
get('/v3/institutions/consumer/invalid_id') { json_response 400, 'invalid_user_institution_id.json' }
|
66
|
+
put('/v3/institutions/consumer/refresh') { json_response 200, 'user_institutions_refresh_all.json' }
|
67
|
+
put('/v3/institutions/consumer/valid_id/credentials') { json_response 200, 'institution_add.json' }
|
68
|
+
put('/v3/institutions/consumer/invalid_id/credentials') { json_response 400, 'invalid_user_institution_id.json' }
|
69
|
+
put('/v3/institutions/consumer/valid_id/mfa') { json_response 200, 'institution_add.json' }
|
70
|
+
put('/v3/institutions/consumer/invalid_id/mfa') { json_response 400, 'invalid_user_institution_id.json' }
|
71
|
+
delete('/v3/institutions/consumer/valid_id') { status 204 }
|
72
|
+
delete('/v3/institutions/consumer/invalid_id') { json_response 400, 'invalid_user_institution_id.json' }
|
73
|
+
get('/v3/institutions/consumer/valid_id/form') { json_response 200, 'institution_login_form.json' }
|
74
|
+
get('/v3/institutions/consumer/invalid_id/form') { json_response 400, 'invalid_institution_id.json' }
|
75
|
+
put('/v3/institutions/refresh') { json_response 200, 'user_institution_refresh.json' }
|
76
76
|
|
77
77
|
# consumers
|
78
|
-
get('/
|
79
|
-
get('/
|
80
|
-
put('/
|
81
|
-
put('/
|
82
|
-
put('/
|
83
|
-
put('/
|
84
|
-
delete('/
|
85
|
-
delete('/
|
78
|
+
get('/v3/consumers/valid_public_id') { json_response 200, 'user.json' }
|
79
|
+
get('/v3/consumers/invalid_public_id') { json_response 404, 'resource_not_found.json' }
|
80
|
+
put('/v3/consumers/valid_public_id') { status 204 }
|
81
|
+
put('/v3/consumers/invalid_public_id') { json_response 400, 'invalid_user_id.json' }
|
82
|
+
put('/v3/consumers/valid_public_id/password') { json_response 200, 'user.json' }
|
83
|
+
put('/v3/consumers/invalid_public_id/password') { json_response 404, 'resource_not_found.json' }
|
84
|
+
delete('/v3/consumers/valid_public_id') { status 204 }
|
85
|
+
delete('/v3/consumers/invalid_public_id') { json_response 404, 'resource_not_found.json' }
|
86
86
|
|
87
87
|
# accounts
|
88
|
-
get('/
|
89
|
-
get('/
|
88
|
+
get('/v3/accounts/valid_id/statement/valid_id') { json_response 200, 'fake_pdf_statement.json' }
|
89
|
+
get('/v3/accounts/invalid_id/statement/valid_id') { json_response 404, 'resource_not_found.json' }
|
90
90
|
|
91
91
|
# operators
|
92
|
-
get('/
|
93
|
-
get('/
|
94
|
-
get('/
|
95
|
-
delete('/
|
96
|
-
delete('/
|
97
|
-
post('/
|
98
|
-
put('/
|
99
|
-
put('/
|
100
|
-
put('/
|
101
|
-
put('/
|
102
|
-
post('/
|
103
|
-
post('/
|
92
|
+
get('/v3/operators') { json_response 200, 'operator_list.json' }
|
93
|
+
get('/v3/operators/invalid_id') { json_response 404, 'resource_not_found.json' }
|
94
|
+
get('/v3/operators/valid_id') { json_response 200, 'operator.json' }
|
95
|
+
delete('/v3/operators/invalid_id') { json_response 404, 'resource_not_found.json' }
|
96
|
+
delete('/v3/operators/valid_id') { status 204 }
|
97
|
+
post('/v3/operators/password/change') { json_response 200, 'operator.json' }
|
98
|
+
put('/v3/operators/invalid_id') { json_response 404, 'resource_not_found.json' }
|
99
|
+
put('/v3/operators/valid_id') { json_response 200, 'operator.json' }
|
100
|
+
put('/v3/operators/valid_id/assign') { status 204 }
|
101
|
+
put('/v3/operators/invalid_id/assign') { json_response 404, 'resource_not_found.json' }
|
102
|
+
post('/v3/operators/password/forgot') { json_response 200, 'operator_forgot_password.json' }
|
103
|
+
post('/v3/operators/password/reset') do
|
104
104
|
request.body.rewind
|
105
105
|
request_payload = JSON.parse request.body.read
|
106
106
|
if request_payload['params'] == 'valid'
|
@@ -109,7 +109,7 @@ class FakeApi < Sinatra::Base
|
|
109
109
|
json_response 400, 'invalid_request_body.json'
|
110
110
|
end
|
111
111
|
end
|
112
|
-
post('/
|
112
|
+
post('/v3/operators') do
|
113
113
|
request.body.rewind
|
114
114
|
request_payload = JSON.parse request.body.read
|
115
115
|
if request_payload['params'] == 'valid'
|
@@ -120,7 +120,7 @@ class FakeApi < Sinatra::Base
|
|
120
120
|
end
|
121
121
|
|
122
122
|
# session
|
123
|
-
post('/
|
123
|
+
post('/v3/login') do
|
124
124
|
request.body.rewind
|
125
125
|
request_payload = JSON.parse request.body.read
|
126
126
|
if request_payload['password'] == 'valid_password'
|
@@ -129,12 +129,12 @@ class FakeApi < Sinatra::Base
|
|
129
129
|
json_response(401, 'unauthorized.json')
|
130
130
|
end
|
131
131
|
end
|
132
|
-
post('/
|
132
|
+
post('/v3/operators/login') { json_response 200, 'operator.json' }
|
133
133
|
|
134
134
|
# password resets
|
135
|
-
post('/
|
136
|
-
post('/
|
137
|
-
put('/
|
135
|
+
post('/v3/tenant/valid_user_id/password') { json_response 200, 'password_reset_token.json' }
|
136
|
+
post('/v3/tenant/invalid_user_id/password') { json_response 404, 'resource_not_found.json' }
|
137
|
+
put('/v3/tenant/valid_user_id/password') do
|
138
138
|
request.body.rewind
|
139
139
|
request_payload = JSON.parse request.body.read
|
140
140
|
if request_payload['token'] == 'valid_token'
|
@@ -143,21 +143,21 @@ class FakeApi < Sinatra::Base
|
|
143
143
|
json_response(400, 'invalid_request_body.json')
|
144
144
|
end
|
145
145
|
end
|
146
|
-
put('/
|
146
|
+
put('/v3/tenant/invalid_user_id/password') { json_response 404, 'resource_not_found.json' }
|
147
147
|
|
148
148
|
# products
|
149
|
-
get('/
|
149
|
+
get('/v3/products') { json_response 200, 'products.json' }
|
150
150
|
|
151
151
|
# relevance
|
152
|
-
get('/
|
152
|
+
get('/v3/relevance/ruleset/names') { json_response 200, 'relevance_ruleset_names.json' }
|
153
153
|
|
154
154
|
# errors
|
155
|
-
get('/
|
156
|
-
get('/
|
157
|
-
get('/
|
155
|
+
get('/v3/client_error') { json_response 400, 'error.json' }
|
156
|
+
get('/v3/server_error') { status 500 }
|
157
|
+
get('/v3/proxy_error') { status 407 }
|
158
158
|
|
159
159
|
# timeout
|
160
|
-
get('/
|
160
|
+
get('/v3/orders/timeout') { status 419 }
|
161
161
|
|
162
162
|
private
|
163
163
|
|
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:
|
4
|
+
version: 3.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Erich Quintero
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-01-
|
11
|
+
date: 2018-01-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: finapps_core
|
@@ -16,20 +16,20 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '3.0'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version:
|
22
|
+
version: 3.0.1
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
27
|
- - "~>"
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '
|
29
|
+
version: '3.0'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version:
|
32
|
+
version: 3.0.1
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: bundler
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -315,34 +315,34 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
315
315
|
version: '0'
|
316
316
|
requirements: []
|
317
317
|
rubyforge_project:
|
318
|
-
rubygems_version: 2.6.
|
318
|
+
rubygems_version: 2.6.13
|
319
319
|
signing_key:
|
320
320
|
specification_version: 4
|
321
321
|
summary: FinApps REST API ruby client.
|
322
322
|
test_files:
|
323
|
-
- spec/spec_helper.rb
|
324
|
-
- spec/spec_helpers/client.rb
|
325
|
-
- spec/utils/query_builder_spec.rb
|
326
|
-
- spec/support/fake_api.rb
|
327
|
-
- spec/rest/order_reports_spec.rb
|
328
|
-
- spec/rest/client_spec.rb
|
329
|
-
- spec/rest/user_institutions_spec.rb
|
330
|
-
- spec/rest/consumers_spec.rb
|
331
|
-
- spec/rest/order_statuses_spec.rb
|
332
|
-
- spec/rest/order_notifications_spec.rb
|
333
323
|
- spec/rest/operators_password_resets_spec.rb
|
324
|
+
- spec/rest/products_spec.rb
|
325
|
+
- spec/rest/statements_spec.rb
|
326
|
+
- spec/rest/version_spec.rb
|
327
|
+
- spec/rest/user_institutions_forms_spec.rb
|
328
|
+
- spec/rest/consumers_spec.rb
|
329
|
+
- spec/rest/orders_spec.rb
|
330
|
+
- spec/rest/order_tokens_spec.rb
|
334
331
|
- spec/rest/institutions_forms_spec.rb
|
335
332
|
- spec/rest/operators_spec.rb
|
336
|
-
- spec/rest/version_spec.rb
|
337
|
-
- spec/rest/statements_spec.rb
|
338
|
-
- spec/rest/order_assignments_spec.rb
|
339
|
-
- spec/rest/order_refreshes_spec.rb
|
340
333
|
- spec/rest/user_institutions_statuses_spec.rb
|
341
|
-
- spec/rest/
|
342
|
-
- spec/rest/
|
343
|
-
- spec/rest/sessions_spec.rb
|
344
|
-
- spec/rest/password_resets_spec.rb
|
334
|
+
- spec/rest/client_spec.rb
|
335
|
+
- spec/rest/user_institutions_spec.rb
|
345
336
|
- spec/rest/consumer_institution_refreshes_spec.rb
|
346
|
-
- spec/rest/
|
337
|
+
- spec/rest/password_resets_spec.rb
|
338
|
+
- spec/rest/order_reports_spec.rb
|
347
339
|
- spec/rest/institutions_spec.rb
|
348
|
-
- spec/rest/
|
340
|
+
- spec/rest/order_statuses_spec.rb
|
341
|
+
- spec/rest/order_refreshes_spec.rb
|
342
|
+
- spec/rest/order_notifications_spec.rb
|
343
|
+
- spec/rest/order_assignments_spec.rb
|
344
|
+
- spec/rest/sessions_spec.rb
|
345
|
+
- spec/support/fake_api.rb
|
346
|
+
- spec/utils/query_builder_spec.rb
|
347
|
+
- spec/spec_helpers/client.rb
|
348
|
+
- spec/spec_helper.rb
|