Class: Skooma::Minitest
- Inherits:
-
Skooma::Matchers::Wrapper
- Object
- Module
- Skooma::Matchers::Wrapper
- Skooma::Minitest
- Defined in:
- lib/skooma/minitest.rb
Overview
Minitest helpers for OpenAPI schema validation
Defined Under Namespace
Modules: HelperMethods
Constant Summary
Constants inherited from Skooma::Matchers::Wrapper
Skooma::Matchers::Wrapper::TEST_REGISTRY_NAME
Instance Attribute Summary
Attributes inherited from Skooma::Matchers::Wrapper
Instance Method Summary collapse
-
#initialize(openapi_path, **params) ⇒ Minitest
constructor
A new instance of Minitest.
Constructor Details
#initialize(openapi_path, **params) ⇒ Minitest
Returns a new instance of Minitest.
39 40 41 42 43 44 45 |
# File 'lib/skooma/minitest.rb', line 39 def initialize(openapi_path, **params) super(HelperMethods, openapi_path, **params) ::Minitest.after_run do coverage.report end end |