Sha256: f28e83e7c9b7957caf7128d4f26a9e9ce109759b2cc9540228ecf9c761868e1b
Contents?: true
Size: 497 Bytes
Versions: 13
Compression:
Stored size: 497 Bytes
Contents
RSpec.describe Percy::Config do let(:config) { Percy::Config.new } it 'returns the correct defaults' do expect(config.keys).to eq( [ :access_token, :api_url, :debug, :repo, :default_widths, ], ) expect(config.access_token).to be_nil expect(config.api_url).to eq(ENV['PERCY_API']) expect(config.debug).to eq(false) expect(config.repo).to eq('percy/percy-client') expect(config.default_widths).to eq([]) end end
Version data entries
13 entries across 13 versions & 1 rubygems