Sha256: a638bcda93c6e0757b3a4cda66ebe48587714d349e4ac667fbe1b688cd558d53

Contents?: true

Size: 314 Bytes

Versions: 7

Compression:

Stored size: 314 Bytes

Contents

# frozen_string_literal: true

RSpec.describe Authorizy::Config, '#dependencies' do
  let!(:config) { described_class.new }

  it 'has default value and can receive a new one' do
    expect(config.dependencies).to eq({})

    config.dependencies = 'value'

    expect(config.dependencies).to eq('value')
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
authorizy-0.5.0 spec/authorizy/config/dependencies_spec.rb
authorizy-0.4.1 spec/authorizy/config/dependencies_spec.rb
authorizy-0.4.0 spec/authorizy/config/dependencies_spec.rb
authorizy-0.3.0 spec/authorizy/config/dependencies_spec.rb
authorizy-0.2.2 spec/authorizy/config/dependencies_spec.rb
authorizy-0.2.1 spec/authorizy/config/dependencies_spec.rb
authorizy-0.2.0 spec/authorizy/config/dependencies_spec.rb