Sha256: c19dc52e36107a1b3e5597293d3a8e5bf13d65dcdfc34d6c816db4e8ec5d9fc3

Contents?: true

Size: 302 Bytes

Versions: 2

Compression:

Stored size: 302 Bytes

Contents

class DummyClass
  attr_reader :domain, :client_id, :client_secret

  def initialize
    @domain = 'test.auth0.com'
    @client_id = 'NyW50o8Qt8I1VhMVlTlfVwWLGzBIPuxb'
  end

  %i(get post put patch delete).each do |method|
    define_method(method) do |_path, _body = {}|
      true
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
auth0-4.5.0 spec/support/dummy_class.rb
auth0-4.4.0 spec/support/dummy_class.rb