forked from seven1m/30-days-of-elixir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
02-unit-testing.exs
35 lines (28 loc) · 1.3 KB
/
02-unit-testing.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# http://elixir-lang.org/getting-started/mix-otp/introduction-to-mix.html
# http://elixir-lang.org/docs/stable/ex_unit/ExUnit.html
ExUnit.start # set up the test runner
defmodule MyTest do
use ExUnit.Case # use requires a module and sets up macros; will explore more later
test 'simple test' do
assert 1 + 1 == 2
#assert 1 + 1 == 3 # Elixir is smart! No need for assert_equal, assert_gte, etc.
# And we still get great failure messages, yipee!
# 1) test_assert (MyTest)
# ** (ExUnit.ExpectationError)
# expected: 2
# to be equal to (==): 3
end
test "refute is opposite of assert" do # test macro accepts string as test name
refute 1 + 1 == 3
end
test :assert_raise do # test macro also accepts an atom
assert_raise ArithmeticError, fn ->
1 + "x"
end
end
test "assert_in_delta asserts that val1 and val2 differ by less than delta." do
assert_in_delta 1, # actual
5, # expected
6 # delta
end
end