Sha256: d8a8e4378b29300fafc7f456d258b40fdf5a5528c4fda91d82f1bac65bd05894
Contents?: true
Size: 697 Bytes
Versions: 3
Compression:
Stored size: 697 Bytes
Contents
# frozen_string_literal: true require 'dotenv/load' require 'vcr' require 'amazon_bedrock' require 'bedrock_runtime/client' require 'bedrock_runtime/payload_factory' require 'support/helpers' RSpec.configure do |config| # Enable flags like --only-failures and --next-failure config.example_status_persistence_file_path = '.rspec_status' # Disable RSpec exposing methods globally on `Module` and `main` config.disable_monkey_patching! config.expect_with :rspec do |c| c.syntax = :expect end end VCR.configure do |config| config.cassette_library_dir = 'spec/cassettes' config.hook_into :webmock # or :faraday if you're using Faraday config.configure_rspec_metadata! end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ruby-amazon-bedrock-0.2.4 | spec/spec_helper.rb |
ruby-amazon-bedrock-0.2.3 | spec/spec_helper.rb |
ruby-amazon-bedrock-0.2.2 | spec/spec_helper.rb |