Sha256: 7456d57819a757d2e6413095ebb9a27be8b74631f2d62dddd22e34ecd0817b39
Contents?: true
Size: 1.46 KB
Versions: 1
Compression:
Stored size: 1.46 KB
Contents
require 'pry' require 'json' require 'washbullet' require 'webmock/rspec' require 'vcr' def test_api_key ENV.fetch('API_KEY', '<API_KEY>') end VCR.configure do |config| config.cassette_library_dir = 'spec/vcr' config.hook_into :webmock config.configure_rspec_metadata! config.filter_sensitive_data('<API_KEY>') do test_api_key end config.before_record do |interaction| next if interaction.response.body.empty? response = JSON.parse(interaction.response.body) response['iden'] = '<IDENTIFIER>' if response.has_key?('iden') %w(devices contacts subscriptions).each do |key| response[key] = response[key].map {|entity| entity.merge!({'iden' => '<IDENTIFIER>'}) if entity['fingerprint'] entity['fingerprint'] = JSON.parse(entity['fingerprint']) entity['fingerprint'].merge!({'android_id' => '<ANDROID_ID>'}) end if entity['channel'] entity['channel'].merge!({'iden' => '<IDENTIFIER>'}) end entity } if response[key] end interaction.response.body = response.to_json end end RSpec.configure do |config| config.expect_with :rspec do |expectations| expectations.include_chain_clauses_in_custom_matcher_descriptions = true end config.mock_with :rspec do |mocks| mocks.verify_partial_doubles = true end config.filter_run :focus config.run_all_when_everything_filtered = true config.disable_monkey_patching! config.warnings = true end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
washbullet-0.4.0 | spec/spec_helper.rb |