diff --git a/lib/sloane_sh.ex b/lib/sloane_sh.ex index 85978bc..6dcdae8 100644 --- a/lib/sloane_sh.ex +++ b/lib/sloane_sh.ex @@ -1,18 +1,5 @@ defmodule SloaneSH do @moduledoc """ - Documentation for `SloaneSH`. + Sloane's personal static site generator powering [sloane.sh](https://sloane.sh). """ - - @doc """ - Hello world. - - ## Examples - - iex> SloaneSH.hello() - :world - - """ - def hello do - :world - end end diff --git a/test/sloane_sh_test.exs b/test/sloane_sh_test.exs index 30474ee..a7ada2d 100644 --- a/test/sloane_sh_test.exs +++ b/test/sloane_sh_test.exs @@ -1,8 +1,3 @@ defmodule SloaneSHTest do use ExUnit.Case - doctest SloaneSH - - test "greets the world" do - assert SloaneSH.hello() == :world - end end