Skip to content

Commit

Permalink
3rd article
Browse files Browse the repository at this point in the history
  • Loading branch information
giorgiosironi committed Sep 26, 2012
1 parent 4019cd3 commit 003974e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/numbers_test_03.erl
Expand Up @@ -2,5 +2,9 @@
-include_lib("eunit/include/eunit.hrl").

simple_test() ->
?_assert(1 == 1).
?assert(1 == 1),
?assertNot(1 == 0),
?assertMatch({number, _Var}, {number, 42}),
?assertEqual(1, 1),
?assertError(undef, lists:append()).

0 comments on commit 003974e

Please sign in to comment.