Blockchain explorer for Ethereum based network and a tool for inspecting and analyzing EVM based blockchains.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
blockscout/test/explorer_web/controllers/address_controller_test.exs

11 lines
309 B

defmodule ExplorerWeb.AddressControllerTest do
use ExplorerWeb.ConnCase
describe "GET show/3" do
test "returns an address", %{conn: conn} do
address = insert(:address, hash: "0x9")
conn = get(conn, "/en/addresses/0x9")
assert conn.assigns.address.id == address.id
end
end
end