et_fake_ccd 0.1.31 → 0.1.32
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/Gemfile.lock +1 -1
- data/lib/et_fake_ccd/service/data_store_app.rb +1 -1
- data/lib/et_fake_ccd/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a7afc10c81912f6e216aa05f50976b235e29e712915fab077bd547e14a5d9651
|
|
4
|
+
data.tar.gz: 53fbc0c99e9941a24e0aaa5f6d4bf252ac1ff726cbcedb5e4bd3572a2cdc053e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6a86018a8e767da9306279bc51fef76efe16f4c45569f715837d8d43b2c76f04c3cda34b2a59f8e0def7707fd7d19831d595042cc1159adca7866fb15c00dbe8
|
|
7
|
+
data.tar.gz: ba525a8c7040343c1222b65820a9cb15fc3f28f5c3308ad108f77d0584fb0ee5bf8099ab5ac7306ffc7cf6ca9a01c716e3b071286f91d3503cbde057a33827de
|
data/Gemfile.lock
CHANGED
|
@@ -98,7 +98,7 @@ module EtFakeCcd
|
|
|
98
98
|
private
|
|
99
99
|
|
|
100
100
|
def force_deliberate_error(data, r)
|
|
101
|
-
return false unless data.dig('data', 'claimantIndType', 'claimant_first_names')
|
|
101
|
+
return false unless data.dig('data', 'claimantIndType', 'claimant_first_names')&.strip&.downcase == 'force'
|
|
102
102
|
error, client_id = data.dig('data', 'claimantIndType', 'claimant_last_name').split('-')
|
|
103
103
|
if client_id.nil?
|
|
104
104
|
render_error(error)
|
data/lib/et_fake_ccd/version.rb
CHANGED