summaryrefslogtreecommitdiff
path: root/test/irc_test.exs
diff options
context:
space:
mode:
Diffstat (limited to 'test/irc_test.exs')
-rw-r--r--test/irc_test.exs8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/irc_test.exs b/test/irc_test.exs
new file mode 100644
index 0000000..8712e31
--- /dev/null
+++ b/test/irc_test.exs
@@ -0,0 +1,8 @@
+defmodule IrcTest do
+ use ExUnit.Case
+ doctest Irc
+
+ test "greets the world" do
+ assert Irc.hello() == :world
+ end
+end