From c9e48d96246278d2f478ed833a04c694a8b12536 Mon Sep 17 00:00:00 2001 From: sloane <1699281+sloanelybutsurely@users.noreply.github.com> Date: Fri, 16 Feb 2024 16:07:16 -0500 Subject: [PATCH] remove default code and test --- lib/sloane_sh.ex | 15 +-------------- test/sloane_sh_test.exs | 5 ----- 2 files changed, 1 insertion(+), 19 deletions(-) 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