diff options
author | Arjun Satarkar <me@arjunsatarkar.net> | 2024-07-17 13:41:06 +0000 |
---|---|---|
committer | Arjun Satarkar <me@arjunsatarkar.net> | 2024-07-17 13:41:06 +0000 |
commit | 06f7696c0976c75c13435f84a2101c1203c18b95 (patch) | |
tree | 9ea52c784f4bc5013c8e8af32e82c0a497889b32 /test | |
download | mediasync-06f7696c0976c75c13435f84a2101c1203c18b95.tar mediasync-06f7696c0976c75c13435f84a2101c1203c18b95.tar.gz mediasync-06f7696c0976c75c13435f84a2101c1203c18b95.zip |
Initial commit
Diffstat (limited to 'test')
-rw-r--r-- | test/mediasync_test.exs | 8 | ||||
-rw-r--r-- | test/test_helper.exs | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/test/mediasync_test.exs b/test/mediasync_test.exs new file mode 100644 index 0000000..773f1ae --- /dev/null +++ b/test/mediasync_test.exs @@ -0,0 +1,8 @@ +defmodule MediasyncTest do + use ExUnit.Case + doctest Mediasync + + test "greets the world" do + assert Mediasync.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() |