Class: Pact::Cli::RunPactVerification
- Inherits:
-
Object
- Object
- Pact::Cli::RunPactVerification
- Defined in:
- lib/pact/cli/run_pact_verification.rb
Instance Attribute Summary collapse
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Class Method Summary collapse
Instance Method Summary collapse
- #call ⇒ Object
-
#initialize(options) ⇒ RunPactVerification
constructor
A new instance of RunPactVerification.
Constructor Details
#initialize(options) ⇒ RunPactVerification
Returns a new instance of RunPactVerification.
8 9 10 |
# File 'lib/pact/cli/run_pact_verification.rb', line 8 def initialize @options = end |
Instance Attribute Details
#options ⇒ Object (readonly)
Returns the value of attribute options.
6 7 8 |
# File 'lib/pact/cli/run_pact_verification.rb', line 6 def @options end |
Class Method Details
.call(options) ⇒ Object
12 13 14 |
# File 'lib/pact/cli/run_pact_verification.rb', line 12 def self.call new().call end |
Instance Method Details
#call ⇒ Object
16 17 18 19 20 21 22 |
# File 'lib/pact/cli/run_pact_verification.rb', line 16 def call configure_output initialize_rspec setup_load_path load_pact_helper run_specs end |