Sha256: 16715bdbbc652b311623c159b589829d6cf64182bfc9d3bd616b4e1c0110d5ff

Contents?: true

Size: 414 Bytes

Versions: 2

Compression:

Stored size: 414 Bytes

Contents

describe Restcomm::Util::Configuration do
  it 'should have an account sid attribute' do
    config = Restcomm::Util::Configuration.new
    config.account_sid = 'someSid'
    expect(config.account_sid).to eq('someSid')
  end

  it 'should have an auth token attribute' do
    config = Restcomm::Util::Configuration.new
    config.auth_token = 'someToken'
    expect(config.auth_token).to eq('someToken')
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
restcomm-ruby-1.2.1 spec/util/configuration_spec.rb
restcomm-ruby-1.2.0 spec/util/configuration_spec.rb