form_api 1.9.1 → 1.11.0
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/CHANGELOG.md +27 -10
- data/Gemfile.lock +1 -1
- data/README.md +17 -5
- data/docs/CreateFolderData.md +8 -0
- data/docs/Folder.md +11 -0
- data/docs/FoldersFolder.md +9 -0
- data/docs/MoveFolderData.md +8 -0
- data/docs/MoveTemplateData.md +8 -0
- data/docs/PDFApi.md +319 -6
- data/docs/PendingTemplate.md +2 -0
- data/docs/RenameFolderData.md +8 -0
- data/docs/Template.md +4 -0
- data/lib/form_api.rb +6 -0
- data/lib/form_api/api/pdf_api.rb +336 -2
- data/lib/form_api/models/create_folder_data.rb +188 -0
- data/lib/form_api/models/folder.rb +210 -0
- data/lib/form_api/models/folders_folder.rb +192 -0
- data/lib/form_api/models/move_folder_data.rb +183 -0
- data/lib/form_api/models/move_template_data.rb +183 -0
- data/lib/form_api/models/pending_template.rb +19 -1
- data/lib/form_api/models/rename_folder_data.rb +188 -0
- data/lib/form_api/models/submission.rb +2 -2
- data/lib/form_api/models/template.rb +40 -4
- data/lib/form_api/version.rb +1 -1
- data/spec/api/pdf_api_spec_original.skipped.rb +89 -3
- data/spec/models/create_folder_data_spec.rb +41 -0
- data/spec/models/folder_spec.rb +59 -0
- data/spec/models/folders_folder_spec.rb +47 -0
- data/spec/models/move_folder_data_spec.rb +41 -0
- data/spec/models/move_template_data_spec.rb +41 -0
- data/spec/models/pending_template_spec.rb +12 -0
- data/spec/models/rename_folder_data_spec.rb +41 -0
- data/spec/models/submission_spec.rb +1 -1
- data/spec/models/template_spec.rb +24 -0
- metadata +26 -2
@@ -0,0 +1,41 @@
|
|
1
|
+
=begin
|
2
|
+
#API v1
|
3
|
+
|
4
|
+
#FormAPI is a service that helps you fill out and sign PDF templates.
|
5
|
+
|
6
|
+
OpenAPI spec version: v1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 3.3.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for FormAPI::CreateFolderData
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'CreateFolderData' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = FormAPI::CreateFolderData.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of CreateFolderData' do
|
31
|
+
it 'should create an instance of CreateFolderData' do
|
32
|
+
expect(@instance).to be_instance_of(FormAPI::CreateFolderData)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "folder"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
=begin
|
2
|
+
#API v1
|
3
|
+
|
4
|
+
#FormAPI is a service that helps you fill out and sign PDF templates.
|
5
|
+
|
6
|
+
OpenAPI spec version: v1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 3.3.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for FormAPI::Folder
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'Folder' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = FormAPI::Folder.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of Folder' do
|
31
|
+
it 'should create an instance of Folder' do
|
32
|
+
expect(@instance).to be_instance_of(FormAPI::Folder)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "path"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "parent_folder_id"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "name"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "id"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
=begin
|
2
|
+
#API v1
|
3
|
+
|
4
|
+
#FormAPI is a service that helps you fill out and sign PDF templates.
|
5
|
+
|
6
|
+
OpenAPI spec version: v1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 3.3.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for FormAPI::FoldersFolder
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'FoldersFolder' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = FormAPI::FoldersFolder.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of FoldersFolder' do
|
31
|
+
it 'should create an instance of FoldersFolder' do
|
32
|
+
expect(@instance).to be_instance_of(FormAPI::FoldersFolder)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "parent_folder_id"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "name"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
=begin
|
2
|
+
#API v1
|
3
|
+
|
4
|
+
#FormAPI is a service that helps you fill out and sign PDF templates.
|
5
|
+
|
6
|
+
OpenAPI spec version: v1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 3.3.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for FormAPI::MoveFolderData
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'MoveFolderData' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = FormAPI::MoveFolderData.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of MoveFolderData' do
|
31
|
+
it 'should create an instance of MoveFolderData' do
|
32
|
+
expect(@instance).to be_instance_of(FormAPI::MoveFolderData)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "parent_folder_id"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
=begin
|
2
|
+
#API v1
|
3
|
+
|
4
|
+
#FormAPI is a service that helps you fill out and sign PDF templates.
|
5
|
+
|
6
|
+
OpenAPI spec version: v1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 3.3.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for FormAPI::MoveTemplateData
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'MoveTemplateData' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = FormAPI::MoveTemplateData.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of MoveTemplateData' do
|
31
|
+
it 'should create an instance of MoveTemplateData' do
|
32
|
+
expect(@instance).to be_instance_of(FormAPI::MoveTemplateData)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "parent_folder_id"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
@@ -48,6 +48,12 @@ describe 'PendingTemplate' do
|
|
48
48
|
end
|
49
49
|
end
|
50
50
|
|
51
|
+
describe 'test attribute "parent_folder_id"' do
|
52
|
+
it 'should work' do
|
53
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
51
57
|
describe 'test attribute "expire_after"' do
|
52
58
|
it 'should work' do
|
53
59
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -72,6 +78,12 @@ describe 'PendingTemplate' do
|
|
72
78
|
end
|
73
79
|
end
|
74
80
|
|
81
|
+
describe 'test attribute "path"' do
|
82
|
+
it 'should work' do
|
83
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
75
87
|
describe 'test attribute "public_web_form"' do
|
76
88
|
it 'should work' do
|
77
89
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -0,0 +1,41 @@
|
|
1
|
+
=begin
|
2
|
+
#API v1
|
3
|
+
|
4
|
+
#FormAPI is a service that helps you fill out and sign PDF templates.
|
5
|
+
|
6
|
+
OpenAPI spec version: v1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 3.3.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for FormAPI::RenameFolderData
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'RenameFolderData' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = FormAPI::RenameFolderData.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of RenameFolderData' do
|
31
|
+
it 'should create an instance of RenameFolderData' do
|
32
|
+
expect(@instance).to be_instance_of(FormAPI::RenameFolderData)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "name"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
@@ -77,7 +77,7 @@ describe 'Submission' do
|
|
77
77
|
describe 'test attribute "state"' do
|
78
78
|
it 'should work' do
|
79
79
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
|
-
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["pending", "processed", "invalid_data", "error", "image_download_failed", "image_processing_failed", "waiting_for_data_requests", "
|
80
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["pending", "processed", "invalid_data", "error", "image_download_failed", "image_processing_failed", "waiting_for_data_requests", "syntax_error", "account_suspended", "license_revoked"])
|
81
81
|
# validator.allowable_values.each do |value|
|
82
82
|
# expect { @instance.state = value }.not_to raise_error
|
83
83
|
# end
|
@@ -48,6 +48,12 @@ describe 'Template' do
|
|
48
48
|
end
|
49
49
|
end
|
50
50
|
|
51
|
+
describe 'test attribute "parent_folder_id"' do
|
52
|
+
it 'should work' do
|
53
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
51
57
|
describe 'test attribute "expire_after"' do
|
52
58
|
it 'should work' do
|
53
59
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -72,6 +78,12 @@ describe 'Template' do
|
|
72
78
|
end
|
73
79
|
end
|
74
80
|
|
81
|
+
describe 'test attribute "path"' do
|
82
|
+
it 'should work' do
|
83
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
75
87
|
describe 'test attribute "public_web_form"' do
|
76
88
|
it 'should work' do
|
77
89
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -96,6 +108,12 @@ describe 'Template' do
|
|
96
108
|
end
|
97
109
|
end
|
98
110
|
|
111
|
+
describe 'test attribute "permanent_document_url"' do
|
112
|
+
it 'should work' do
|
113
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
114
|
+
end
|
115
|
+
end
|
116
|
+
|
99
117
|
describe 'test attribute "template_type"' do
|
100
118
|
it 'should work' do
|
101
119
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -120,4 +138,10 @@ describe 'Template' do
|
|
120
138
|
end
|
121
139
|
end
|
122
140
|
|
141
|
+
describe 'test attribute "document_url"' do
|
142
|
+
it 'should work' do
|
143
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
144
|
+
end
|
145
|
+
end
|
146
|
+
|
123
147
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: form_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Form Applications, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-10-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -235,6 +235,7 @@ files:
|
|
235
235
|
- docs/CreateCombinedSubmissionResponse.md
|
236
236
|
- docs/CreateCustomFileData.md
|
237
237
|
- docs/CreateCustomFileResponse.md
|
238
|
+
- docs/CreateFolderData.md
|
238
239
|
- docs/CreateSubmissionBatchResponse.md
|
239
240
|
- docs/CreateSubmissionBatchSubmissionsResponse.md
|
240
241
|
- docs/CreateSubmissionDataRequestData.md
|
@@ -244,9 +245,14 @@ files:
|
|
244
245
|
- docs/CreateTemplateData.md
|
245
246
|
- docs/CustomFile.md
|
246
247
|
- docs/Error.md
|
248
|
+
- docs/Folder.md
|
249
|
+
- docs/FoldersFolder.md
|
247
250
|
- docs/InvalidRequest.md
|
251
|
+
- docs/MoveFolderData.md
|
252
|
+
- docs/MoveTemplateData.md
|
248
253
|
- docs/PDFApi.md
|
249
254
|
- docs/PendingTemplate.md
|
255
|
+
- docs/RenameFolderData.md
|
250
256
|
- docs/Submission.md
|
251
257
|
- docs/SubmissionAction.md
|
252
258
|
- docs/SubmissionBatch.md
|
@@ -277,6 +283,7 @@ files:
|
|
277
283
|
- lib/form_api/models/create_combined_submission_response.rb
|
278
284
|
- lib/form_api/models/create_custom_file_data.rb
|
279
285
|
- lib/form_api/models/create_custom_file_response.rb
|
286
|
+
- lib/form_api/models/create_folder_data.rb
|
280
287
|
- lib/form_api/models/create_submission_batch_response.rb
|
281
288
|
- lib/form_api/models/create_submission_batch_submissions_response.rb
|
282
289
|
- lib/form_api/models/create_submission_data_request_data.rb
|
@@ -286,8 +293,13 @@ files:
|
|
286
293
|
- lib/form_api/models/create_template_data.rb
|
287
294
|
- lib/form_api/models/custom_file.rb
|
288
295
|
- lib/form_api/models/error.rb
|
296
|
+
- lib/form_api/models/folder.rb
|
297
|
+
- lib/form_api/models/folders_folder.rb
|
289
298
|
- lib/form_api/models/invalid_request.rb
|
299
|
+
- lib/form_api/models/move_folder_data.rb
|
300
|
+
- lib/form_api/models/move_template_data.rb
|
290
301
|
- lib/form_api/models/pending_template.rb
|
302
|
+
- lib/form_api/models/rename_folder_data.rb
|
291
303
|
- lib/form_api/models/submission.rb
|
292
304
|
- lib/form_api/models/submission_action.rb
|
293
305
|
- lib/form_api/models/submission_batch.rb
|
@@ -316,6 +328,7 @@ files:
|
|
316
328
|
- spec/models/create_combined_submission_response_spec.rb
|
317
329
|
- spec/models/create_custom_file_data_spec.rb
|
318
330
|
- spec/models/create_custom_file_response_spec.rb
|
331
|
+
- spec/models/create_folder_data_spec.rb
|
319
332
|
- spec/models/create_submission_batch_response_spec.rb
|
320
333
|
- spec/models/create_submission_batch_submissions_response_spec.rb
|
321
334
|
- spec/models/create_submission_data_request_data_spec.rb
|
@@ -325,8 +338,13 @@ files:
|
|
325
338
|
- spec/models/create_template_data_spec.rb
|
326
339
|
- spec/models/custom_file_spec.rb
|
327
340
|
- spec/models/error_spec.rb
|
341
|
+
- spec/models/folder_spec.rb
|
342
|
+
- spec/models/folders_folder_spec.rb
|
328
343
|
- spec/models/invalid_request_spec.rb
|
344
|
+
- spec/models/move_folder_data_spec.rb
|
345
|
+
- spec/models/move_template_data_spec.rb
|
329
346
|
- spec/models/pending_template_spec.rb
|
347
|
+
- spec/models/rename_folder_data_spec.rb
|
330
348
|
- spec/models/submission_action_spec.rb
|
331
349
|
- spec/models/submission_batch_data_spec.rb
|
332
350
|
- spec/models/submission_batch_spec.rb
|
@@ -380,6 +398,7 @@ test_files:
|
|
380
398
|
- spec/models/create_combined_submission_response_spec.rb
|
381
399
|
- spec/models/create_custom_file_data_spec.rb
|
382
400
|
- spec/models/create_custom_file_response_spec.rb
|
401
|
+
- spec/models/create_folder_data_spec.rb
|
383
402
|
- spec/models/create_submission_batch_response_spec.rb
|
384
403
|
- spec/models/create_submission_batch_submissions_response_spec.rb
|
385
404
|
- spec/models/create_submission_data_request_data_spec.rb
|
@@ -389,8 +408,13 @@ test_files:
|
|
389
408
|
- spec/models/create_template_data_spec.rb
|
390
409
|
- spec/models/custom_file_spec.rb
|
391
410
|
- spec/models/error_spec.rb
|
411
|
+
- spec/models/folder_spec.rb
|
412
|
+
- spec/models/folders_folder_spec.rb
|
392
413
|
- spec/models/invalid_request_spec.rb
|
414
|
+
- spec/models/move_folder_data_spec.rb
|
415
|
+
- spec/models/move_template_data_spec.rb
|
393
416
|
- spec/models/pending_template_spec.rb
|
417
|
+
- spec/models/rename_folder_data_spec.rb
|
394
418
|
- spec/models/submission_action_spec.rb
|
395
419
|
- spec/models/submission_batch_data_spec.rb
|
396
420
|
- spec/models/submission_batch_spec.rb
|