aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2016-10-30 21:45:46 -0600
committerkballou <kballou@devnulllabs.io>2016-10-30 21:45:46 -0600
commit34ad7d93000824dd764a7297a91cda831aa9e89a (patch)
tree3b66791929baf6d06f7de66f620403988b878e71 /test
downloadoctochat-34ad7d93000824dd764a7297a91cda831aa9e89a.tar.gz
octochat-34ad7d93000824dd764a7297a91cda831aa9e89a.tar.xz
Octochat: Initial commit
Diffstat (limited to 'test')
-rw-r--r--test/octochat_test.exs8
-rw-r--r--test/test_helper.exs1
2 files changed, 9 insertions, 0 deletions
diff --git a/test/octochat_test.exs b/test/octochat_test.exs
new file mode 100644
index 0000000..15ef0c7
--- /dev/null
+++ b/test/octochat_test.exs
@@ -0,0 +1,8 @@
+defmodule OctochatTest do
+ use ExUnit.Case
+ doctest Octochat
+
+ test "the truth" do
+ assert 1 + 1 == 2
+ end
+end
diff --git a/test/test_helper.exs b/test/test_helper.exs
new file mode 100644
index 0000000..869559e
--- /dev/null
+++ b/test/test_helper.exs
@@ -0,0 +1 @@
+ExUnit.start()