new
Cryptoid (root) Request
CoinMarketCap api request

concepts

attrs

@base_url (attr)

Attribute base_url


fields

signatures

⨌ handle_response / 1 (signature) Signature inference is ambiguous, choose stricter type

Head of handle_response/1

⨌ get / 1 (signature) Signature inference is ambiguous, choose stricter type

Head of get/1


samples

implements

protocols

lib/cryptoid/request.ex
defmodule Cryptoid.Request do @moduledoc "CoinMarketCap api request" @base_url [] @doc "Head of handle_response/1" @spec handle_response(tuple) :: any def handle_response(tuple) do end @doc "Head of get/1" @spec get(any) :: any def get(path) do end end

defmodule Cryptoid.Request do
  @moduledoc "CoinMarketCap api request"
  @base_url []
  @doc "Head of handle_response/1"
  @spec handle_response(tuple) :: any
  def handle_response(tuple) do
  end

  @doc "Head of get/1"
  @spec get(any) :: any
  def get(path) do
  end
end


test/cryptoid/request_test.exs
defmodule Cryptoid.RequestTest do use ExUnit.Case, async: true describe("get / 1") do test "fun get" do end end describe("handle_response / 1") do test "fun handle_response" do end end end

defmodule Cryptoid.RequestTest do
  use ExUnit.Case, async: true

  describe("get / 1") do
    test "fun get" do
    end
  end

  describe("handle_response / 1") do
    test "fun handle_response" do
    end
  end
end