9 lines
141 B
Elixir
9 lines
141 B
Elixir
defmodule SteamApiTest do
|
|
use ExUnit.Case
|
|
doctest SteamApi
|
|
|
|
test "greets the world" do
|
|
assert SteamApi.hello() == :world
|
|
end
|
|
end
|