cfonb 1.1.0 → 1.1.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '09ba2c778bfad0f2b60f224bd4e13a67b9cb15d3f02062036c0a9ae7ed407b9e'
|
4
|
+
data.tar.gz: 13430b0b63638d05fc0127780b767bc746cdd5caaa65a671d017c4339111e63d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '097f4da9225e785f732dbedcd31e2465c2794a9533dbbaa4dd64d70f11cac80d2e57dbcc9f1346c72d055c351884649ded431b49114b4da4a9156155ac2d2eae'
|
7
|
+
data.tar.gz: eb270fd78d5cbbf9c1a05779f876859544687891099ecbf9236e42a7230da8f7b6b2c0ab4831495279e137919adcb8273d9a755b0b68e8d6440c02d5ab846c56
|
@@ -276,8 +276,8 @@ describe CFONB::Operation do
|
|
276
276
|
context 'with an unknown detail' do
|
277
277
|
let(:detail) do
|
278
278
|
OpenStruct.new(
|
279
|
-
body: '0530004411001871EUR2 0001016255614090823
|
280
|
-
detail_code: '
|
279
|
+
body: '0530004411001871EUR2 0001016255614090823 A AEUR200000000000740',
|
280
|
+
detail_code: 'A A',
|
281
281
|
detail: 'EUR200000000000740',
|
282
282
|
)
|
283
283
|
end
|
@@ -285,14 +285,25 @@ describe CFONB::Operation do
|
|
285
285
|
it 'adds the detail to the unknown details hash' do
|
286
286
|
operation.merge_detail(detail)
|
287
287
|
|
288
|
-
expect(operation.details.unknown).to eq({ '
|
288
|
+
expect(operation.details.unknown).to eq({ 'A_A' => 'EUR200000000000740' })
|
289
289
|
end
|
290
290
|
|
291
291
|
it 'updates the current details in case of duplicated codes' do
|
292
292
|
operation.merge_detail(detail)
|
293
293
|
operation.merge_detail(detail)
|
294
294
|
|
295
|
-
expect(operation.details.unknown).to eq({ '
|
295
|
+
expect(operation.details.unknown).to eq({ 'A_A' => "EUR200000000000740\nEUR200000000000740" })
|
296
|
+
end
|
297
|
+
|
298
|
+
it 'does not add any detail if they are empty' do
|
299
|
+
detail = OpenStruct.new(
|
300
|
+
body: '0530004411001871EUR2 0001016255614090823',
|
301
|
+
detail_code: '',
|
302
|
+
detail: 'EUR200000000000740',
|
303
|
+
)
|
304
|
+
operation.merge_detail(detail)
|
305
|
+
|
306
|
+
expect(operation.details.unknown).to be_nil
|
296
307
|
end
|
297
308
|
end
|
298
309
|
end
|
data/spec/cfonb/parser_spec.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cfonb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Johan Le Bray
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2024-12-
|
12
|
+
date: 2024-12-30 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: license_finder
|