summaryrefslogtreecommitdiff
path: root/elixir/workshop1_test.exs
diff options
context:
space:
mode:
authorArnaud Bailly <arnaud.bailly@iohk.io>2024-10-11 15:09:29 +0200
committerArnaud Bailly <arnaud.bailly@iohk.io>2024-10-11 15:09:29 +0200
commit3363ab2da764825558c859f4419ff99528ed2274 (patch)
treedb5f1c71a3fe5cea64bc84c34fefe960961d3179 /elixir/workshop1_test.exs
parent8094716f7c9a3d9f2886132e7419b377abb97b3b (diff)
downloadlambda-nantes-3363ab2da764825558c859f4419ff99528ed2274.tar.gz
Add elixir code
Diffstat (limited to 'elixir/workshop1_test.exs')
-rw-r--r--elixir/workshop1_test.exs8
1 files changed, 8 insertions, 0 deletions
diff --git a/elixir/workshop1_test.exs b/elixir/workshop1_test.exs
new file mode 100644
index 0000000..f0b4603
--- /dev/null
+++ b/elixir/workshop1_test.exs
@@ -0,0 +1,8 @@
+defmodule Workshop1Test do
+ use ExUnit.Case
+ doctest Workshop1
+
+ test "greets the world" do
+ assert Workshop1.hello() == :world
+ end
+end