Sha256: 2e81d936071f91cb50cdadfbd19063885e849b4df96f32eb5a76027a371f4530
Contents?: true
Size: 1.45 KB
Versions: 3
Compression:
Stored size: 1.45 KB
Contents
# -*- encoding : utf-8 -*- # Just require pacto to add it to your project. require 'pacto' # Pacto will disable live connections, so you will get an error if # your code unexpectedly calls an service that was not stubbed. If you # want to re-enable connections, run `WebMock.allow_net_connect!` WebMock.allow_net_connect! # Pacto can be configured via a block: Pacto.configure do |c| # Path for loading/storing contracts. c.contracts_path = 'contracts' # If the request matching should be strict (especially regarding HTTP Headers). c.strict_matchers = true # You can set the Ruby Logger used by Pacto. c.logger = Pacto::Logger::SimpleLogger.instance # (Deprecated) You can specify a callback for post-processing responses. Note that only one hook # can be active, and specifying your own will disable ERB post-processing. c.register_hook do |_contracts, request, _response| puts "Received #{request}" end # Options to pass to the [json-schema-generator](https://github.com/maxlinc/json-schema-generator) while generating contracts. c.generator_options = { schema_version: 'draft3' } end # You can also do inline configuration. This example tells the json-schema-generator to store default values in the schema. Pacto.configuration.generator_options = { defaults: true } # If you're using Pacto's rspec matchers you might want to configure a reset between each scenario require 'pacto/rspec' RSpec.configure do |c| c.after(:each) { Pacto.clear! } end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
pacto-0.4.0.rc3 | samples/configuration.rb |
pacto-0.4.0.rc2 | samples/configuration.rb |
pacto-0.4.0.rc1 | samples/configuration.rb |