summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHentioe <me@bluerain.io>2020-10-18 02:31:43 +0800
committerHentioe <me@bluerain.io>2020-10-18 02:31:43 +0800
commitb2177236cec81b7f5cf6caeb8615750235ac1561 (patch)
tree6fc4d83b3f44e0d967df64b109fa5afeab2007bb /test
Init
Diffstat (limited to 'test')
-rw-r--r--test/azure_ex_test.exs8
-rw-r--r--test/test_helper.exs1
2 files changed, 9 insertions, 0 deletions
diff --git a/test/azure_ex_test.exs b/test/azure_ex_test.exs
new file mode 100644
index 0000000..af9043c
--- /dev/null
+++ b/test/azure_ex_test.exs
@@ -0,0 +1,8 @@
+defmodule AzureExTest do
+ use ExUnit.Case
+ doctest AzureEx
+
+ test "greets the world" do
+ assert AzureEx.hello() == :world
+ 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()