smart_scheduling_links_test_kit 0.1.0 → 0.2.1
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: d66a0c5fced9608f57d00a64618c5cdab4c78a72a31ca55101d5fc4b98dc94fe
|
4
|
+
data.tar.gz: d46c90bd7b7fe79ff69c658e89999267c1f566d84c5efc096db1bb4ecb454aec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 464c470058a3c8ed3ccd5c17e72eb1cd76e0781d9865367e7a3e316e52b49270596d0446564f2672d47f2d6779a86341b7a272e904b30a71de6f305ef7000721
|
7
|
+
data.tar.gz: a1d95c9f10bd7d1c310759e089761fbdbb0682c61fc8fcfed580f4392a47a2d5f044381f8e384189072572a8034b03c1cfc6bd6e291798bf1c068e9002a06ec9
|
@@ -8,17 +8,26 @@ module SMARTSchedulingLinks
|
|
8
8
|
title 'SMART Scheduling Links'
|
9
9
|
description %(
|
10
10
|
Tests for [SMART Scheduling
|
11
|
-
Links](https://github.com/smart-on-fhir/smart-scheduling-links)
|
11
|
+
Links](https://github.com/smart-on-fhir/smart-scheduling-links).
|
12
12
|
|
13
13
|
These tests work by retrieving a bulk publication manifest, then
|
14
|
-
retrieving the files listed in the manifest and validating the resources
|
14
|
+
retrieving the files listed in the manifest and validating the HL7® FHIR® resources
|
15
15
|
they contain.
|
16
16
|
)
|
17
17
|
version VERSION
|
18
18
|
|
19
|
-
|
20
|
-
|
21
|
-
|
19
|
+
VALIDATION_MESSAGE_FILTERS = [
|
20
|
+
/\A\S+: \S+: URL value '.*' does not resolve/
|
21
|
+
].freeze
|
22
|
+
|
23
|
+
fhir_resource_validator do
|
24
|
+
igs 'igs/smart_scheduling_links_ig.tgz'
|
25
|
+
|
26
|
+
exclude_message do |message|
|
27
|
+
message.type == 'info' ||
|
28
|
+
VALIDATION_MESSAGE_FILTERS.any? { |filter| filter.match? message.message }
|
29
|
+
end
|
30
|
+
|
22
31
|
perform_additional_validation do |resource, profile_url|
|
23
32
|
next unless profile_url == 'http://fhir-registry.smarthealthit.org/StructureDefinition/vaccine-slot'
|
24
33
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: smart_scheduling_links_test_kit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Inferno Team
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-11-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: inferno_core
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.5.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.
|
26
|
+
version: 0.5.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: database_cleaner-sequel
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -98,7 +98,7 @@ licenses:
|
|
98
98
|
metadata:
|
99
99
|
homepage_uri: https://github.com/inferno-framework/smart-scheduling-links-test-kit
|
100
100
|
source_code_uri: https://github.com/inferno-framework/smart-scheduling-links-test-kit
|
101
|
-
post_install_message:
|
101
|
+
post_install_message:
|
102
102
|
rdoc_options: []
|
103
103
|
require_paths:
|
104
104
|
- lib
|
@@ -114,7 +114,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
114
114
|
version: '0'
|
115
115
|
requirements: []
|
116
116
|
rubygems_version: 3.3.7
|
117
|
-
signing_key:
|
117
|
+
signing_key:
|
118
118
|
specification_version: 4
|
119
119
|
summary: SMART Scheduling Links Test Kit
|
120
120
|
test_files: []
|