Initial commit
This commit is contained in:
7
elixir/hello-world/test/hello_world_test.exs
Normal file
7
elixir/hello-world/test/hello_world_test.exs
Normal file
@@ -0,0 +1,7 @@
|
||||
defmodule HelloWorldTest do
|
||||
use ExUnit.Case
|
||||
|
||||
test "says 'Hello, World!'" do
|
||||
assert HelloWorld.hello() == "Hello, World!"
|
||||
end
|
||||
end
|
||||
2
elixir/hello-world/test/test_helper.exs
Normal file
2
elixir/hello-world/test/test_helper.exs
Normal file
@@ -0,0 +1,2 @@
|
||||
ExUnit.start()
|
||||
ExUnit.configure(exclude: :pending, trace: true)
|
||||
Reference in New Issue
Block a user