Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@ series of HTTP requests that mimic a real world client to ensure that the API
supports an approved version of each of the required standards:

* Health Level 7 (HL7®) Fast Healthcare Interoperability Resources (FHIR®) (v4.0.1)
* US Core Implementation Guide (v3.1.1, v4.0.0, v6.1.0, or v7.0.0)
* SMART Application Launch Framework Implementation Guide Release (v1.0.0,
v2.0.0, or v2.2.0)
* US Core Implementation Guide (v6.1.0, or v7.0.0)
* SMART Application Launch Framework Implementation Guide Release (v2.0.0, or v2.2.0)
* HL7 FHIR Bulk Data Access (Flat FHIR) (v1.0.1, or v2.0.0)

_Please note that US Core Implementation Guide v.7.0.0 should only be used
Expand Down
1 change: 0 additions & 1 deletion lib/onc_certification_g10_test_kit.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
require 'smart_app_launch/smart_stu1_suite'
require 'smart_app_launch/smart_stu2_suite'
require 'smart_app_launch/smart_stu2_2_suite'
require 'us_core_test_kit'
Expand Down
7 changes: 2 additions & 5 deletions lib/onc_certification_g10_test_kit/all_resources.rb
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,12 @@ module AllResources
'Provenance'
].freeze

V5_ALL_RESOURCES = (ALL_RESOURCES + ['RelatedPerson', 'ServiceRequest']).freeze

V6_ALL_RESOURCES = (V5_ALL_RESOURCES + ['Coverage', 'MedicationDispense', 'Specimen']).freeze
V6_ALL_RESOURCES = (ALL_RESOURCES + ['RelatedPerson', 'ServiceRequest', 'Coverage', 'MedicationDispense',
'Specimen']).freeze

V7_ALL_RESOURCES = (V6_ALL_RESOURCES + ['Location']).freeze

def all_required_resources
return V5_ALL_RESOURCES if using_us_core_5?

return V6_ALL_RESOURCES if using_us_core_6?

return V7_ALL_RESOURCES if using_us_core_7?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ class BaseTokenRefreshGroup < Inferno::TestGroup
* [The OAuth 2.0 Authorization
Framework](https://tools.ietf.org/html/rfc6749)
* [Using a refresh token to obtain a new access token
(STU1)](http://hl7.org/fhir/smart-app-launch/1.0.0/index.html#step-5-later-app-uses-a-refresh-token-to-obtain-a-new-access-token)
* [Using a refresh token to obtain a new access token
(STU2)](http://hl7.org/fhir/smart-app-launch/STU2/app-launch.html#refresh-access-token)
(STU2)](http://hl7.org/fhir/smart-app-launch/STU2.1/app-launch.html#step-6-later-app-uses-a-refresh-token-to-obtain-a-new-access-token)
)
id :g10_token_refresh

Expand Down
Loading