diff --git a/lib/inferno/spec_support.rb b/lib/inferno/spec_support.rb index f1f8b8ce7..c11dc68c3 100644 --- a/lib/inferno/spec_support.rb +++ b/lib/inferno/spec_support.rb @@ -7,11 +7,13 @@ module SpecSupport FACTORY_PATH = File.expand_path('../../spec/factories', __dir__).freeze REQUEST_HELPER_PATH = File.expand_path('../../spec/request_helper', __dir__).freeze RUNNABLE_HELPER_PATH = File.expand_path('../../spec/runnable_helper', __dir__).freeze + TEST_KIT_SPEC = File.expand_path('../../spec/shared/test_kit_examples', __dir__).freeze def self.require_helpers require FACTORY_BOT_SUPPORT_PATH require RUNNABLE_HELPER_PATH require REQUEST_HELPER_PATH + require TEST_KIT_SPEC end end end