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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 60848e4e718f24f6d9160cbb3bc9389bf3e2ffa1d0a2d980f251cfcb2a51e55a
|
|
4
|
+
data.tar.gz: 8476b8ae557232bd4de034068f9871e19aa52168e336d397485202c31b1ec57c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d8b05e2ca35b3bbd6147941f84947b95fc2ef52c1c347eaf6d66125fc44723515df3f36442e0639467bb88602ca008aa1a502970c244dfe2fedf0fd289075144
|
|
7
|
+
data.tar.gz: e91f06bf652b32497441f6781c9edfdceb5e594e1da2822b03a617ebec2d1359b712423636f6e8c413672f9a8a7c79cdfca2640e6a252f5250989ac1ad5e77c0
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
},
|
|
88
88
|
{
|
|
89
89
|
"name": "url",
|
|
90
|
-
"valueUrl": "http://
|
|
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://
|
|
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://
|
|
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://
|
|
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/
|
|
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
|
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.
|
|
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-
|
|
11
|
+
date: 2023-12-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: inferno_core
|