elixir-book/weather/test/weather_test.exs

9 lines
138 B
Elixir

defmodule WeatherTest do
use ExUnit.Case
doctest Weather
test "greets the world" do
assert Weather.hello() == :world
end
end