uds_plus_test_kit 1.0.5 → 1.0.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 719de47995674c07898efc624bfcacb19f5180ee89f05ecfb8cc6d78e6b907f4
4
- data.tar.gz: 89313bf688921b5bf9242335631eda25ce86055ae4e1b46e529e92b2120f1273
3
+ metadata.gz: 60848e4e718f24f6d9160cbb3bc9389bf3e2ffa1d0a2d980f251cfcb2a51e55a
4
+ data.tar.gz: 8476b8ae557232bd4de034068f9871e19aa52168e336d397485202c31b1ec57c
5
5
  SHA512:
6
- metadata.gz: 38ea29b468539317c810ea9f7592b41b3b4680ded358896a047a10be7aa1aa4513245d1c736b9bcc9c1959173e3f5d5424c490d6e5da9c04b34072933242f641
7
- data.tar.gz: 8ef032e82432b39b07f1a4758d2843b71139bde66c1c241e16fc3d91eccb394dd9620ead6ab88e564dde364bd233366dd6a2e1fd6339d01c1d8e1ff858504e89
6
+ metadata.gz: d8b05e2ca35b3bbd6147941f84947b95fc2ef52c1c347eaf6d66125fc44723515df3f36442e0639467bb88602ca008aa1a502970c244dfe2fedf0fd289075144
7
+ data.tar.gz: e91f06bf652b32497441f6781c9edfdceb5e594e1da2822b03a617ebec2d1359b712423636f6e8c413672f9a8a7c79cdfca2640e6a252f5250989ac1ad5e77c0
@@ -87,7 +87,7 @@
87
87
  },
88
88
  {
89
89
  "name": "url",
90
- "valueUrl": "http://host.docker.internal/custom/uds_plus/examples/patient"
90
+ "valueUrl": "http://localhost:4567/custom/uds_plus/examples/patient"
91
91
  },
92
92
  {
93
93
  "name": "expirationTime",
@@ -104,7 +104,7 @@
104
104
  },
105
105
  {
106
106
  "name": "url",
107
- "valueUrl": "http://host.docker.internal/custom/uds_plus/examples/condition"
107
+ "valueUrl": "http://localhost:4567/custom/uds_plus/examples/condition"
108
108
  },
109
109
  {
110
110
  "name": "expirationTime",
@@ -121,7 +121,7 @@
121
121
  },
122
122
  {
123
123
  "name": "url",
124
- "valueUrl": "http://host.docker.internal/custom/uds_plus/examples/observation"
124
+ "valueUrl": "http://localhost:4567/custom/uds_plus/examples/observation"
125
125
  },
126
126
  {
127
127
  "name": "expirationTime",
@@ -138,7 +138,7 @@
138
138
  },
139
139
  {
140
140
  "name": "url",
141
- "valueUrl": "http://host.docker.internal/custom/uds_plus/examples/encounter"
141
+ "valueUrl": "http://localhost:4567/custom/uds_plus/examples/encounter"
142
142
  },
143
143
  {
144
144
  "name": "expirationTime",
@@ -23,8 +23,11 @@ module UDSPlusTestKit
23
23
 
24
24
  # Messages will be excluded if the block evaluates to a truthy value
25
25
  exclude_message do |message|
26
- message.type == 'warning' &&
27
- message.message.match?(/Global Profile reference .* could not be resolved, so has not been checked/)
26
+ (message.type == 'warning' &&
27
+ message.message.match?(/Global Profile reference .* could not be resolved, so has not been checked/)) ||
28
+ (message.type == 'error' &&
29
+ Inferno::Application['base_url'].match?(/localhost:/) &&
30
+ message.message.match?(/Server Error: Code .* not found in CPT;/))
28
31
  end
29
32
  end
30
33
 
@@ -22,7 +22,7 @@ module UDSPlusTestKit
22
22
  run do
23
23
  omit_if data_to_test.empty?, "No data of this type was identified."
24
24
 
25
- profile_definition = 'http://hl7.org/fhir/us/uds-plus/StructureDefinition/de-identified-uds-plus-clinical-result-observation'
25
+ profile_definition = 'http://hl7.org/fhir/us/uds-plus/StructureDefinition/uds-plus-clinical-result-observation'
26
26
  profile_with_version = "#{profile_definition}|#{UDS_PLUS_VERSION}"
27
27
 
28
28
  no_resource_of_this_type = true
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module UDSPlusTestKit
4
- VERSION = '1.0.5'
4
+ VERSION = '1.0.6'
5
5
  UDS_PLUS_VERSION = '1.0.0'
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uds_plus_test_kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leap Orbit
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-14 00:00:00.000000000 Z
11
+ date: 2023-12-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: inferno_core